fork(1) download
  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4.  
  5. int main() {
  6. long int n, k, t, v, hx, hy;
  7. long int x = 0, y = 0;
  8. cin >> n >> k >> t >> v;
  9. cin >> hx >> hy;
  10. for(long int i = 0; i <= k; i++){
  11. if(i%4 == 0){
  12. x += 1 + n*i;
  13. y += 1 + n*i;
  14. }
  15. if(i%4 == 1){
  16. x += 1 + n*i;
  17. y -= 1 + n*i;
  18. }
  19. if(i%4 == 2){
  20. x -= 1 + n*i;
  21. y -= 1 + n*i;
  22. }
  23. if(i%4 == 3){
  24. x -= 1 + n*i;
  25. y += 1 + n*i;
  26. }
  27. }
  28. if(t*v * sqrt(2) >= sqrt(pow(x - hx,2) + pow(y - hy, 2))){
  29. cout << "Good night Ia";
  30. }
  31. else{
  32. cout << "Poor Ia";
  33. }
  34. return 0;
  35. }
Success #stdin #stdout 0s 4188KB
stdin
Standard input is empty
stdout
Poor Ia