結果

問題 No.988 N×Mマス計算(総和)
ユーザー H20H20
提出日時 2021-07-15 11:08:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 92,752 KB
最終ジャッジ日時 2024-07-04 11:20:21
合計ジャッジ時間 2,988 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,496 KB
testcase_01 AC 37 ms
52,008 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 39 ms
52,068 KB
testcase_04 AC 37 ms
52,332 KB
testcase_05 AC 38 ms
53,088 KB
testcase_06 AC 37 ms
52,836 KB
testcase_07 AC 38 ms
52,808 KB
testcase_08 AC 37 ms
53,696 KB
testcase_09 AC 35 ms
52,088 KB
testcase_10 AC 85 ms
78,524 KB
testcase_11 AC 86 ms
90,824 KB
testcase_12 AC 114 ms
92,520 KB
testcase_13 AC 81 ms
83,980 KB
testcase_14 AC 80 ms
84,240 KB
testcase_15 AC 86 ms
79,544 KB
testcase_16 AC 100 ms
85,248 KB
testcase_17 AC 112 ms
88,272 KB
testcase_18 AC 82 ms
88,464 KB
testcase_19 AC 106 ms
90,128 KB
testcase_20 AC 125 ms
92,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = map(int,input().split())
B = list(input().split())
OP = B[0]
B = list(map(int, B[1:]))
A = []
for _ in range(N):
    A.append(int(input()))
ANS = 0
if OP=='+':
    for a in A:
        ANS = (ANS+a*M)%K
    for b in B:
        ANS = (ANS+b*N)%K
else:
    SB = sum(B)
    for a in A:
        ANS = (ANS+a*SB)%K
print(ANS)
0