結果

問題 No.2324 Two Countries within UEC
ユーザー lloyzlloyz
提出日時 2023-06-03 01:33:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 269 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 76,984 KB
最終ジャッジ日時 2024-06-09 03:02:58
合計ジャッジ時間 10,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
76,188 KB
testcase_01 AC 320 ms
76,432 KB
testcase_02 AC 110 ms
76,500 KB
testcase_03 AC 251 ms
76,044 KB
testcase_04 AC 273 ms
76,524 KB
testcase_05 AC 134 ms
76,188 KB
testcase_06 AC 149 ms
76,152 KB
testcase_07 AC 105 ms
76,300 KB
testcase_08 AC 248 ms
76,300 KB
testcase_09 AC 266 ms
76,352 KB
testcase_10 AC 347 ms
76,152 KB
testcase_11 AC 312 ms
76,352 KB
testcase_12 AC 150 ms
76,352 KB
testcase_13 AC 147 ms
76,444 KB
testcase_14 AC 119 ms
76,156 KB
testcase_15 AC 106 ms
76,092 KB
testcase_16 AC 235 ms
75,972 KB
testcase_17 AC 177 ms
76,072 KB
testcase_18 AC 115 ms
76,984 KB
testcase_19 AC 318 ms
76,476 KB
testcase_20 AC 101 ms
76,196 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 333 ms
76,344 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 31 ms
51,892 KB
testcase_32 AC 32 ms
54,052 KB
testcase_33 AC 30 ms
52,836 KB
testcase_34 AC 31 ms
52,372 KB
testcase_35 AC 31 ms
53,432 KB
testcase_36 AC 29 ms
52,624 KB
testcase_37 AC 30 ms
52,440 KB
testcase_38 AC 30 ms
52,372 KB
testcase_39 AC 29 ms
52,440 KB
testcase_40 AC 29 ms
53,160 KB
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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