結果
問題 | No.2324 Two Countries within UEC |
ユーザー | ばけかぼちゃ |
提出日時 | 2023-05-28 14:21:49 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 321 bytes |
コンパイル時間 | 352 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 818,136 KB |
最終ジャッジ日時 | 2024-12-27 00:40:47 |
合計ジャッジ時間 | 25,133 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 31 ms
10,752 KB |
testcase_32 | AC | 31 ms
10,624 KB |
testcase_33 | AC | 33 ms
10,496 KB |
testcase_34 | AC | 33 ms
10,496 KB |
testcase_35 | AC | 32 ms
10,496 KB |
testcase_36 | AC | 31 ms
10,624 KB |
testcase_37 | AC | 28 ms
10,624 KB |
testcase_38 | AC | 33 ms
10,496 KB |
testcase_39 | AC | 31 ms
10,624 KB |
testcase_40 | AC | 30 ms
10,496 KB |
testcase_41 | AC | 28 ms
10,624 KB |
testcase_42 | AC | 31 ms
10,624 KB |
ソースコード
n, m, p, q = map(int, input().split()) xy = [[0] * m for _ in range(n)] for i in range(n): for j in range(m): xy[i][j] = ((i + 1) * (j + 1)) % p for _ in range(q): x, f = map(int, input().split()) count = 0 for j in range(m): if xy[x - 1][j] == f: count += 1 print(count)