結果
問題 | No.2324 Two Countries within UEC |
ユーザー | tontiru |
提出日時 | 2023-05-29 16:38:40 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 688 bytes |
コンパイル時間 | 1,071 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 77,312 KB |
最終ジャッジ日時 | 2024-12-28 09:58:39 |
合計ジャッジ時間 | 25,563 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 327 ms
76,544 KB |
testcase_27 | AC | 315 ms
76,288 KB |
testcase_28 | AC | 302 ms
76,032 KB |
testcase_29 | AC | 310 ms
76,160 KB |
testcase_30 | AC | 311 ms
76,288 KB |
testcase_31 | AC | 43 ms
52,480 KB |
testcase_32 | AC | 43 ms
51,456 KB |
testcase_33 | AC | 42 ms
51,712 KB |
testcase_34 | AC | 45 ms
52,096 KB |
testcase_35 | WA | - |
testcase_36 | AC | 43 ms
51,968 KB |
testcase_37 | AC | 41 ms
52,096 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 41 ms
51,584 KB |
testcase_41 | AC | 42 ms
51,968 KB |
testcase_42 | AC | 43 ms
51,968 KB |
ソースコード
N,M,P,Q = map(int,input().split()) num = P-2 num = int(bin(num)[2:]) for i in range(Q): x,f = map(int,input().split()) cels = [] res = 1 if x%P == 0: if f == 0: print(M) else: print(0) else: for j in range(0,len(str(num))): if cels == []: cels.append(x) else: cels.append((cels[-1]**2)%P) if str(num)[j] == "1": res *= cels[-1] res %= P y = (f*res)%P if y <= M and y != 0: print((M-y)//P+1) elif y == 0: print((M-y)//P) else: print(0)