結果

問題 No.988 N×Mマス計算(総和)
ユーザー ohanaohana
提出日時 2023-10-30 10:40:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 310 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-09-25 17:11:52
合計ジャッジ時間 4,957 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,216 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 43 ms
57,984 KB
testcase_03 AC 43 ms
58,112 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 42 ms
57,984 KB
testcase_06 AC 42 ms
57,856 KB
testcase_07 AC 44 ms
57,984 KB
testcase_08 AC 43 ms
58,112 KB
testcase_09 AC 40 ms
51,968 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 #

h, w, k = map(int, input().split())


t = input().split()
ope, X = t[0], list(map(int, t[1:]))
Y = [int(input()) for i in range(h)]

sm = 0
for i in range(h):
    for j in range(w):
        if ope == "+":
            sm = (sm + Y[i] + X[j]) % k
        else:
            sm = (sm + Y[i] * X[j]) % k

print(sm)
0