結果

問題 No.988 N×Mマス計算(総和)
ユーザー stngstng
提出日時 2022-08-17 10:55:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 95,104 KB
最終ジャッジ日時 2024-10-04 10:33:27
合計ジャッジ時間 2,714 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,744 KB
testcase_01 AC 36 ms
53,320 KB
testcase_02 AC 36 ms
52,464 KB
testcase_03 AC 35 ms
52,992 KB
testcase_04 AC 36 ms
52,712 KB
testcase_05 AC 35 ms
52,628 KB
testcase_06 AC 34 ms
53,288 KB
testcase_07 AC 35 ms
53,376 KB
testcase_08 AC 35 ms
52,552 KB
testcase_09 AC 35 ms
52,752 KB
testcase_10 AC 82 ms
79,020 KB
testcase_11 AC 85 ms
93,160 KB
testcase_12 AC 112 ms
94,836 KB
testcase_13 AC 80 ms
85,612 KB
testcase_14 AC 80 ms
85,708 KB
testcase_15 AC 84 ms
77,104 KB
testcase_16 AC 100 ms
86,636 KB
testcase_17 AC 108 ms
90,268 KB
testcase_18 AC 81 ms
90,312 KB
testcase_19 AC 103 ms
92,152 KB
testcase_20 AC 120 ms
95,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())
opb = input().split()
op = opb[0]
b = []
for i in range(1,m+1):
    b.append(int(opb[i]))

a = [int(input()) for i in range(n)]

ans = 0

smb = sum(b)
sma = sum(a)

for i in range(n):
    if op == "+":
        ans += a[i]*m
    else:
        ans += a[i]*smb
    ans %= k

for i in range(m):
    if op == "+":
        ans += b[i]*n
    #else:
    #    ans += b[i]*sma
    ans %= k

print(ans)
0