結果

問題 No.2324 Two Countries within UEC
ユーザー KudeKude
提出日時 2023-05-28 13:38:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 373 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 76,620 KB
最終ジャッジ日時 2024-06-26 23:13:34
合計ジャッジ時間 10,225 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 351 ms
76,024 KB
testcase_01 AC 366 ms
76,528 KB
testcase_02 AC 126 ms
76,584 KB
testcase_03 AC 287 ms
76,144 KB
testcase_04 AC 311 ms
76,248 KB
testcase_05 AC 133 ms
76,316 KB
testcase_06 AC 172 ms
76,520 KB
testcase_07 AC 121 ms
75,956 KB
testcase_08 AC 280 ms
76,244 KB
testcase_09 AC 287 ms
76,092 KB
testcase_10 AC 373 ms
76,104 KB
testcase_11 AC 355 ms
76,036 KB
testcase_12 AC 162 ms
75,960 KB
testcase_13 AC 162 ms
76,564 KB
testcase_14 AC 129 ms
75,880 KB
testcase_15 AC 121 ms
75,940 KB
testcase_16 AC 269 ms
76,092 KB
testcase_17 AC 204 ms
76,040 KB
testcase_18 AC 133 ms
76,204 KB
testcase_19 AC 355 ms
76,160 KB
testcase_20 AC 114 ms
76,052 KB
testcase_21 AC 258 ms
75,736 KB
testcase_22 AC 313 ms
75,884 KB
testcase_23 AC 148 ms
76,320 KB
testcase_24 AC 272 ms
76,064 KB
testcase_25 AC 358 ms
75,840 KB
testcase_26 AC 281 ms
76,024 KB
testcase_27 AC 285 ms
76,260 KB
testcase_28 AC 275 ms
76,620 KB
testcase_29 AC 286 ms
76,188 KB
testcase_30 AC 284 ms
75,948 KB
testcase_31 AC 38 ms
52,696 KB
testcase_32 AC 39 ms
52,696 KB
testcase_33 AC 38 ms
51,980 KB
testcase_34 AC 37 ms
52,908 KB
testcase_35 AC 36 ms
52,568 KB
testcase_36 AC 37 ms
52,600 KB
testcase_37 AC 38 ms
52,480 KB
testcase_38 AC 38 ms
53,220 KB
testcase_39 AC 37 ms
52,372 KB
testcase_40 AC 36 ms
52,696 KB
testcase_41 AC 38 ms
52,376 KB
testcase_42 AC 38 ms
52,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, p, q = map(int, input().split())
for _ in range(q):
    x, f = map(int, input().split())
    if x % p == 0:
        print(m if f == 0 else 0)
    else:
        y = pow(x, p - 2, p) * f % p
        # 1<=tp+y<=m
        # 1-y<=tp<=m-y
        ans = (m - y) // p - (1 - y + p - 1) // p + 1
        print(ans)
0