結果

問題 No.2324 Two Countries within UEC
ユーザー ばけかぼちゃばけかぼちゃ
提出日時 2023-05-28 14:02:59
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 227 bytes
コンパイル時間 610 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 821,376 KB
最終ジャッジ日時 2024-12-26 23:02:39
合計ジャッジ時間 27,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

n,m,p,q = map(int,input().split())
xy = [[0]*m for i in range (n)]
for i in range (n):
    for j in range (m):
        xy[i][j] = ((i+1)*(j+1))%p
for i in range (q):
    x,f = map(int,input().split())
    print(xy[x].count(f))
0