結果
問題 | No.988 N×Mマス計算(総和) |
ユーザー | 8ayac |
提出日時 | 2020-02-14 21:49:34 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 355 bytes |
コンパイル時間 | 203 ms |
コンパイル使用メモリ | 82,296 KB |
実行使用メモリ | 572,728 KB |
最終ジャッジ日時 | 2024-07-06 07:08:01 |
合計ジャッジ時間 | 4,257 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
59,368 KB |
testcase_01 | AC | 31 ms
53,168 KB |
testcase_02 | AC | 37 ms
61,676 KB |
testcase_03 | AC | 36 ms
59,416 KB |
testcase_04 | AC | 32 ms
52,696 KB |
testcase_05 | AC | 37 ms
61,564 KB |
testcase_06 | AC | 36 ms
59,856 KB |
testcase_07 | AC | 37 ms
60,536 KB |
testcase_08 | AC | 36 ms
60,684 KB |
testcase_09 | AC | 32 ms
52,644 KB |
testcase_10 | MLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
tmp = list(map(int, input().split())) N, M, K = tmp[0], tmp[1],tmp[2] tmp = input().split() op, B = tmp[0], tmp[1:] A = [input() for _ in range(N)] tmp = [] if op == '+': for a in A: for b in B: tmp.append(int(a)+int(b)) if op == '*': for a in A: for b in B: tmp.append(int(a)*int(b)) print(sum(tmp) % K)