結果

問題 No.2324 Two Countries within UEC
ユーザー SchneeSchnee
提出日時 2023-05-28 15:29:48
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 239 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 1,642,752 KB
最終ジャッジ日時 2024-12-27 06:59:45
合計ジャッジ時間 38,739 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 MLE -
testcase_02 RE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 RE -
testcase_06 MLE -
testcase_07 RE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 RE -
testcase_11 MLE -
testcase_12 RE -
testcase_13 MLE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 RE -
testcase_26 TLE -
testcase_27 MLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 33 ms
10,496 KB
testcase_32 AC 32 ms
10,496 KB
testcase_33 AC 31 ms
10,496 KB
testcase_34 AC 32 ms
10,496 KB
testcase_35 AC 33 ms
10,496 KB
testcase_36 AC 31 ms
10,624 KB
testcase_37 AC 29 ms
10,496 KB
testcase_38 AC 35 ms
10,496 KB
testcase_39 AC 34 ms
10,496 KB
testcase_40 AC 30 ms
10,496 KB
testcase_41 AC 29 ms
10,496 KB
testcase_42 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, p, q = map(int, input().split())

count = [[0]*p for _ in range(n+1)]
for x in range(1, n+1):
    for y in range(1, m+1):
        count[x][(x*y)%p] += 1

for _ in range(q):
    x, f = map(int, input().split())
    print(count[x][f])
0