結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-14 01:22:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 76,772 KB
最終ジャッジ日時 2024-06-26 03:30:51
合計ジャッジ時間 6,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
52,068 KB
testcase_02 AC 44 ms
52,248 KB
testcase_03 AC 39 ms
53,408 KB
testcase_04 AC 38 ms
52,364 KB
testcase_05 WA -
testcase_06 AC 39 ms
52,612 KB
testcase_07 AC 39 ms
53,980 KB
testcase_08 AC 38 ms
53,500 KB
testcase_09 AC 39 ms
54,132 KB
testcase_10 AC 40 ms
52,476 KB
testcase_11 AC 38 ms
52,072 KB
testcase_12 AC 38 ms
52,468 KB
testcase_13 AC 39 ms
52,516 KB
testcase_14 AC 110 ms
76,536 KB
testcase_15 AC 130 ms
76,168 KB
testcase_16 AC 101 ms
76,312 KB
testcase_17 AC 43 ms
53,544 KB
testcase_18 AC 111 ms
76,440 KB
testcase_19 AC 126 ms
76,224 KB
testcase_20 AC 138 ms
76,584 KB
testcase_21 AC 112 ms
76,192 KB
testcase_22 AC 94 ms
76,560 KB
testcase_23 AC 116 ms
76,228 KB
testcase_24 AC 100 ms
76,260 KB
testcase_25 AC 106 ms
76,548 KB
testcase_26 AC 131 ms
76,200 KB
testcase_27 AC 128 ms
76,708 KB
testcase_28 AC 123 ms
76,772 KB
testcase_29 AC 124 ms
76,036 KB
testcase_30 AC 69 ms
69,684 KB
testcase_31 AC 49 ms
56,532 KB
testcase_32 AC 101 ms
76,168 KB
testcase_33 AC 120 ms
76,480 KB
testcase_34 AC 105 ms
76,300 KB
testcase_35 AC 122 ms
76,564 KB
testcase_36 AC 70 ms
70,680 KB
testcase_37 AC 120 ms
76,408 KB
testcase_38 AC 114 ms
76,212 KB
testcase_39 AC 95 ms
76,708 KB
testcase_40 AC 136 ms
76,740 KB
testcase_41 AC 100 ms
76,468 KB
testcase_42 AC 127 ms
76,308 KB
testcase_43 AC 108 ms
76,356 KB
testcase_44 AC 126 ms
76,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
P,Q=map(int,input().split())
if P+Q==0:
    print(0)
    exit()
N=int(input())
res=0
g=math.gcd(P,Q)
P//=g
Q//=g
for i in range(N):
    X,Y=map(int,input().split())
    X=abs(X)
    Y=abs(Y)
    if X%g==0 and Y%g==0:
        X//=g
        Y//=g
        if P%2 and Q%2:
            if (X+Y)%2==0:
                res+=1
        else:
            res+=1
print(res)


0