結果

問題 No.988 N×Mマス計算(総和)
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2020-07-18 20:38:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 87,360 KB
最終ジャッジ日時 2024-07-06 08:02:52
合計ジャッジ時間 2,104 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,488 KB
testcase_01 AC 30 ms
53,832 KB
testcase_02 AC 31 ms
53,044 KB
testcase_03 AC 31 ms
53,008 KB
testcase_04 AC 30 ms
53,716 KB
testcase_05 AC 30 ms
52,844 KB
testcase_06 AC 31 ms
52,204 KB
testcase_07 AC 30 ms
53,160 KB
testcase_08 AC 30 ms
52,732 KB
testcase_09 AC 30 ms
53,952 KB
testcase_10 AC 68 ms
77,348 KB
testcase_11 AC 75 ms
85,716 KB
testcase_12 AC 88 ms
86,772 KB
testcase_13 AC 68 ms
81,240 KB
testcase_14 AC 67 ms
81,432 KB
testcase_15 AC 70 ms
76,264 KB
testcase_16 AC 85 ms
81,708 KB
testcase_17 AC 91 ms
84,444 KB
testcase_18 AC 71 ms
84,364 KB
testcase_19 AC 89 ms
85,088 KB
testcase_20 AC 113 ms
87,360 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