結果

問題 No.988 N×Mマス計算(総和)
ユーザー pypypymipypypymi
提出日時 2022-02-17 20:07:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 268 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 199,312 KB
最終ジャッジ日時 2024-06-29 07:47:41
合計ジャッジ時間 4,927 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
59,348 KB
testcase_01 AC 33 ms
52,488 KB
testcase_02 AC 92 ms
77,084 KB
testcase_03 AC 64 ms
76,216 KB
testcase_04 AC 34 ms
54,260 KB
testcase_05 AC 86 ms
77,496 KB
testcase_06 AC 85 ms
77,264 KB
testcase_07 AC 91 ms
77,844 KB
testcase_08 AC 49 ms
73,256 KB
testcase_09 AC 39 ms
58,868 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())
op_B = input().split()
op = op_B[0]
B = list(map(int,op_B[1:]))
A = [int(input()) for i in range(n)]
result = 0
for ai in A:
    result2 = 0
    for bi in B:
        result2+=eval(str(ai)+op+str(bi))
    result+=result2
print(result%k)
0