結果

問題 No.2324 Two Countries within UEC
ユーザー dangodango
提出日時 2023-06-13 21:21:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-06-26 23:37:44
合計ジャッジ時間 10,813 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 354 ms
76,388 KB
testcase_01 AC 380 ms
77,184 KB
testcase_02 AC 134 ms
76,160 KB
testcase_03 AC 301 ms
76,212 KB
testcase_04 AC 320 ms
76,160 KB
testcase_05 AC 139 ms
76,544 KB
testcase_06 AC 176 ms
76,160 KB
testcase_07 AC 127 ms
76,800 KB
testcase_08 AC 282 ms
76,544 KB
testcase_09 AC 286 ms
76,404 KB
testcase_10 AC 370 ms
76,928 KB
testcase_11 AC 349 ms
76,716 KB
testcase_12 AC 163 ms
76,472 KB
testcase_13 AC 165 ms
76,416 KB
testcase_14 AC 131 ms
76,336 KB
testcase_15 AC 123 ms
75,904 KB
testcase_16 AC 274 ms
76,928 KB
testcase_17 AC 211 ms
77,312 KB
testcase_18 AC 141 ms
76,364 KB
testcase_19 AC 373 ms
75,904 KB
testcase_20 AC 115 ms
76,476 KB
testcase_21 AC 278 ms
75,776 KB
testcase_22 AC 322 ms
76,408 KB
testcase_23 AC 150 ms
76,032 KB
testcase_24 AC 274 ms
76,544 KB
testcase_25 AC 365 ms
75,904 KB
testcase_26 AC 319 ms
76,416 KB
testcase_27 AC 356 ms
76,420 KB
testcase_28 AC 317 ms
75,904 KB
testcase_29 AC 311 ms
76,032 KB
testcase_30 AC 304 ms
76,416 KB
testcase_31 AC 36 ms
51,328 KB
testcase_32 AC 36 ms
51,712 KB
testcase_33 AC 36 ms
51,328 KB
testcase_34 AC 36 ms
51,328 KB
testcase_35 AC 37 ms
51,968 KB
testcase_36 AC 37 ms
51,328 KB
testcase_37 AC 38 ms
51,840 KB
testcase_38 AC 37 ms
51,584 KB
testcase_39 AC 37 ms
51,712 KB
testcase_40 AC 37 ms
51,712 KB
testcase_41 AC 36 ms
52,096 KB
testcase_42 AC 36 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, P, Q = map(int, input().split())
for i in range(Q):
	X, F = map(int, input().split())
	Y = pow(X, P - 2, P) * F % P
	if Y < 1: Y = P
	print([[(M - Y) // P + 1, 0][M < Y], [0, M][F % P < 1]][X % P < 1])
0