結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー H3PO4H3PO4
提出日時 2020-10-21 09:03:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 761 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 58,676 KB
最終ジャッジ日時 2024-07-21 08:47:31
合計ジャッジ時間 30,764 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 536 ms
44,468 KB
testcase_01 AC 524 ms
44,332 KB
testcase_02 AC 539 ms
44,332 KB
testcase_03 AC 538 ms
43,824 KB
testcase_04 AC 545 ms
43,952 KB
testcase_05 AC 540 ms
44,336 KB
testcase_06 AC 529 ms
43,956 KB
testcase_07 AC 535 ms
43,956 KB
testcase_08 AC 532 ms
44,080 KB
testcase_09 AC 532 ms
44,212 KB
testcase_10 AC 534 ms
43,960 KB
testcase_11 AC 528 ms
44,256 KB
testcase_12 AC 539 ms
44,080 KB
testcase_13 AC 532 ms
43,956 KB
testcase_14 AC 671 ms
51,372 KB
testcase_15 AC 761 ms
58,676 KB
testcase_16 AC 598 ms
48,048 KB
testcase_17 AC 535 ms
44,208 KB
testcase_18 AC 617 ms
49,456 KB
testcase_19 AC 650 ms
51,700 KB
testcase_20 AC 726 ms
58,040 KB
testcase_21 AC 719 ms
51,380 KB
testcase_22 AC 560 ms
45,240 KB
testcase_23 AC 693 ms
54,352 KB
testcase_24 AC 577 ms
46,132 KB
testcase_25 AC 637 ms
50,864 KB
testcase_26 AC 719 ms
57,272 KB
testcase_27 AC 676 ms
53,072 KB
testcase_28 AC 664 ms
52,780 KB
testcase_29 AC 733 ms
58,416 KB
testcase_30 AC 536 ms
44,220 KB
testcase_31 AC 539 ms
44,344 KB
testcase_32 AC 633 ms
49,716 KB
testcase_33 AC 621 ms
50,092 KB
testcase_34 AC 594 ms
47,800 KB
testcase_35 AC 689 ms
53,564 KB
testcase_36 AC 537 ms
44,336 KB
testcase_37 AC 641 ms
51,124 KB
testcase_38 AC 621 ms
49,708 KB
testcase_39 AC 548 ms
44,720 KB
testcase_40 AC 704 ms
55,988 KB
testcase_41 AC 571 ms
46,428 KB
testcase_42 AC 680 ms
54,328 KB
testcase_43 AC 599 ms
48,176 KB
testcase_44 AC 672 ms
53,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np
from math import gcd

input = sys.stdin.buffer.readline

P, Q = map(int, input().split())
N = int(input())
XY = np.array([tuple(map(int, input().split())) for _ in range(N)])
if (P, Q) == (0, 0):
    print(np.count_nonzero(np.all(XY == 0, axis=1)))
    exit()

g = gcd(P, Q)
P, Q = P // g, Q // g
XY = XY[np.all(XY % g == 0, axis=1)] // g
N = len(XY)

if (P + Q) % 2:
    print(N)
else:
    print(np.count_nonzero(np.sum(XY, axis=1) % 2 == 0))
0