結果

問題 No.988 N×Mマス計算(総和)
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2020-07-18 20:38:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 19,316 KB
最終ジャッジ日時 2024-07-06 08:02:41
合計ジャッジ時間 3,119 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 125 ms
13,184 KB
testcase_11 AC 93 ms
18,816 KB
testcase_12 AC 221 ms
19,316 KB
testcase_13 AC 100 ms
15,168 KB
testcase_14 AC 83 ms
15,168 KB
testcase_15 AC 156 ms
13,056 KB
testcase_16 AC 217 ms
15,668 KB
testcase_17 AC 258 ms
17,324 KB
testcase_18 AC 88 ms
17,296 KB
testcase_19 AC 214 ms
17,544 KB
testcase_20 AC 311 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
tmp = list(input().split())
tmp.reverse()
op = tmp.pop()

B = [int(tmp.pop()) for i in range(m)]
A = [int(input()) for i in range(n)]

b = 0
for Bi in B:
    b += Bi
    b %= k

ans = 0
for Ai in A:
    if op == "+":
        ans += Ai * m + b
    elif op == "*":
        ans += Ai * b
    ans %= k

print(ans)
0