結果
問題 | No.321 (P,Q)-サンタと街の子供たち |
ユーザー | Grenache |
提出日時 | 2015-12-14 19:47:18 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,606 bytes |
コンパイル時間 | 4,245 ms |
コンパイル使用メモリ | 79,432 KB |
実行使用メモリ | 49,012 KB |
最終ジャッジ日時 | 2024-09-15 12:40:18 |
合計ジャッジ時間 | 14,079 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
37,076 KB |
testcase_01 | AC | 53 ms
37,104 KB |
testcase_02 | AC | 53 ms
36,852 KB |
testcase_03 | AC | 52 ms
37,044 KB |
testcase_04 | AC | 54 ms
36,624 KB |
testcase_05 | AC | 53 ms
36,644 KB |
testcase_06 | AC | 54 ms
37,044 KB |
testcase_07 | AC | 53 ms
36,548 KB |
testcase_08 | AC | 54 ms
36,908 KB |
testcase_09 | AC | 53 ms
36,968 KB |
testcase_10 | AC | 53 ms
36,800 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 54 ms
36,644 KB |
testcase_14 | WA | - |
testcase_15 | AC | 319 ms
49,012 KB |
testcase_16 | AC | 220 ms
43,760 KB |
testcase_17 | AC | 60 ms
36,676 KB |
testcase_18 | AC | 237 ms
45,528 KB |
testcase_19 | WA | - |
testcase_20 | AC | 356 ms
47,204 KB |
testcase_21 | WA | - |
testcase_22 | AC | 170 ms
43,812 KB |
testcase_23 | AC | 301 ms
47,576 KB |
testcase_24 | AC | 185 ms
43,456 KB |
testcase_25 | WA | - |
testcase_26 | AC | 328 ms
48,052 KB |
testcase_27 | WA | - |
testcase_28 | AC | 293 ms
45,872 KB |
testcase_29 | AC | 335 ms
48,608 KB |
testcase_30 | AC | 117 ms
40,004 KB |
testcase_31 | AC | 89 ms
38,068 KB |
testcase_32 | AC | 250 ms
46,268 KB |
testcase_33 | WA | - |
testcase_34 | AC | 223 ms
44,724 KB |
testcase_35 | WA | - |
testcase_36 | AC | 129 ms
40,180 KB |
testcase_37 | AC | 287 ms
45,488 KB |
testcase_38 | AC | 251 ms
45,172 KB |
testcase_39 | WA | - |
testcase_40 | AC | 338 ms
48,480 KB |
testcase_41 | WA | - |
testcase_42 | AC | 328 ms
48,564 KB |
testcase_43 | AC | 233 ms
45,216 KB |
testcase_44 | AC | 306 ms
47,396 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.PrintStream; import java.io.PrintWriter; import java.util.Arrays; import java.util.Iterator; public class Main_yukicoder321_1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Printer pr = new Printer(System.out); int p = sc.nextInt(); int q = sc.nextInt(); if (p < q) { int tmp = p; p = q; q = tmp; } int n = sc.nextInt(); int ret = 0; for (int i = 0; i < n; i++) { int x = Math.abs(sc.nextInt()); int y = Math.abs(sc.nextInt()); if (p == 0) { if (x == 0 && y == 0) { ret++; } } else if (q == 0) { if (x % p == 0 && y % p == 0) { ret++; } } else { int tmp; if (p % q == 0) { tmp = q; } else { tmp = gcd(p, q); } if ((p / tmp + q / tmp) % 2 != 0) { if (x % tmp == 0 && y % tmp == 0) { ret++; } } else { if (x % (2 * tmp) == 0 && y % (2 * tmp) == 0 && (x + y) % (2 * tmp) == 0 && (x - y) % (2 * tmp) == 0) { ret++; } } } } pr.println(ret); pr.close(); sc.close(); } private static int gcd(int n, int m) { if (m == 0) { return n; } else { return gcd(m, n % m); } } @SuppressWarnings("unused") private static class Scanner { BufferedReader br; Iterator<String> it; Scanner (InputStream in) { br = new BufferedReader(new InputStreamReader(in)); } String next() throws RuntimeException { try { if (it == null || !it.hasNext()) { it = Arrays.asList(br.readLine().split(" ")).iterator(); } return it.next(); } catch (IOException e) { throw new IllegalStateException(); } } int nextInt() throws RuntimeException { return Integer.parseInt(next()); } long nextLong() throws RuntimeException { return Long.parseLong(next()); } float nextFloat() throws RuntimeException { return Float.parseFloat(next()); } double nextDouble() throws RuntimeException { return Double.parseDouble(next()); } void close() { try { br.close(); } catch (IOException e) { // throw new IllegalStateException(); } } } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }