Submission #1607264


Source Code Expand

import java.util.*;

public class Main {                 
   public static void main(String[] args) {   
     
      Scanner sc = new Scanner(System.in);                                                                                     
       
      int txa = sc.nextInt();
      int txb = sc.nextInt();
      int tya = sc.nextInt();
      int tyb = sc.nextInt();            
      
      int T = sc.nextInt();
      int V = sc.nextInt();
      
      int n = sc.nextInt();
      
      boolean flag = false;
      
      int a[] = new int[n];
      int b[] = new int[n];

      for(int i = 0;i < n;i++){
          a[i] = sc.nextInt();
          b[i] = sc.nextInt();
      }      
      
      for(int i = 0;i < n;i++){
          int x = a[i];
          int y = b[i];
          
          double l = Math.sqrt((txa - x)*(txa - x) + (tya - y)*(tya - y));
          double r = Math.sqrt((x - txb)*(x - txb) + (y - tyb)*(y - tyb));
          
          if(l + r < T*V){
              flag = true;
              break;
          }          
      }
      
      System.out.println(flag ? "YES":"NO");
            
   }     
}

Submission Info

Submission Time
Task C - 浮気調査
User suesue
Language Java8 (OpenJDK 1.8.0)
Score 0
Code Size 1167 Byte
Status WA
Exec Time 147 ms
Memory 25840 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
AC × 27
WA × 8
Set Name Test Cases
All sample_01.txt, sample_02.txt, sample_03.txt, sample_04.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt
Case Name Status Exec Time Memory
sample_01.txt AC 90 ms 19796 KB
sample_02.txt AC 90 ms 20692 KB
sample_03.txt AC 90 ms 22996 KB
sample_04.txt AC 91 ms 19028 KB
test_01.txt AC 147 ms 25644 KB
test_02.txt AC 137 ms 22500 KB
test_03.txt AC 131 ms 20100 KB
test_04.txt AC 105 ms 19796 KB
test_05.txt WA 116 ms 19028 KB
test_06.txt AC 90 ms 19796 KB
test_07.txt AC 137 ms 22828 KB
test_08.txt AC 146 ms 25516 KB
test_09.txt AC 121 ms 22228 KB
test_10.txt AC 136 ms 22740 KB
test_11.txt AC 95 ms 20564 KB
test_12.txt AC 89 ms 19796 KB
test_13.txt AC 140 ms 20052 KB
test_14.txt WA 140 ms 25088 KB
test_15.txt AC 99 ms 19540 KB
test_16.txt AC 111 ms 19028 KB
test_17.txt WA 105 ms 24148 KB
test_18.txt AC 91 ms 21716 KB
test_19.txt WA 130 ms 23120 KB
test_20.txt AC 135 ms 22100 KB
test_21.txt AC 137 ms 25840 KB
test_22.txt WA 105 ms 21844 KB
test_23.txt AC 95 ms 19924 KB
test_24.txt AC 91 ms 19796 KB
test_25.txt AC 145 ms 22632 KB
test_26.txt WA 140 ms 25568 KB
test_27.txt WA 131 ms 21328 KB
test_28.txt AC 130 ms 25296 KB
test_29.txt WA 122 ms 21204 KB
test_30.txt AC 96 ms 21844 KB
test_31.txt AC 94 ms 19796 KB