結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー te-shte-sh
提出日時 2017-06-22 14:51:30
言語 D
(dmd 2.106.1)
結果
RE  
実行時間 -
コード長 767 bytes
コンパイル時間 855 ms
コンパイル使用メモリ 107,088 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 20:26:27
合計ジャッジ時間 4,284 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 RE -
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 54 ms
6,940 KB
testcase_15 AC 89 ms
6,940 KB
testcase_16 AC 33 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 40 ms
6,944 KB
testcase_19 AC 55 ms
6,944 KB
testcase_20 AC 83 ms
6,940 KB
testcase_21 AC 53 ms
6,940 KB
testcase_22 AC 15 ms
6,944 KB
testcase_23 AC 69 ms
6,940 KB
testcase_24 AC 19 ms
6,944 KB
testcase_25 AC 45 ms
6,940 KB
testcase_26 AC 78 ms
6,940 KB
testcase_27 AC 59 ms
6,940 KB
testcase_28 AC 59 ms
6,944 KB
testcase_29 AC 85 ms
6,940 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 43 ms
6,940 KB
testcase_33 AC 42 ms
6,944 KB
testcase_34 AC 30 ms
6,940 KB
testcase_35 AC 66 ms
6,940 KB
testcase_36 AC 4 ms
6,940 KB
testcase_37 AC 51 ms
6,944 KB
testcase_38 AC 43 ms
6,944 KB
testcase_39 AC 14 ms
6,940 KB
testcase_40 AC 79 ms
6,940 KB
testcase_41 AC 22 ms
6,944 KB
testcase_42 AC 68 ms
6,940 KB
testcase_43 AC 34 ms
6,940 KB
testcase_44 AC 62 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/std/numeric.d(2999): Warning: cannot inline function `std.numeric.gcdImpl!ulong.gcdImpl`

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;
import std.math;      // math functions
import std.numeric;   // gcd, fft

void main()
{
  auto rd1 = readln.split.to!(long[]), p = rd1[0], q = rd1[1];
  auto g1 = gcd(p, q);
  p /= g1; q /= g1;

  auto g2 = gcd((p ^^ 2 - q ^^ 2).abs, 2 * q);

  auto n = readln.chomp.to!size_t, r = 0;
  foreach (_; 0..n) {
    auto rd2 = readln.split.to!(long[]), x = rd2[0], y = rd2[1];

    if (x % g1 != 0 || y % g1 != 0) continue;
    x /= g1; y /= g1;

    if (p == 0 && q == 0) {
      if (x == 0 && y == 0) ++r;
    } else if (p == 1 && q == 1) {
      if (x == y) ++r;
    } else if (p == 0 || q == 0 || g2 == 1) {
      ++r;
    } else {
      if ((q * y - p * x) % g2 == 0) ++r;
    }
  }

  writeln(r);
}
0