結果

問題 No.988 N×Mマス計算(総和)
ユーザー brthyyjpbrthyyjp
提出日時 2020-02-14 21:34:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 96,652 KB
最終ジャッジ日時 2024-07-06 06:59:16
合計ジャッジ時間 2,331 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,884 KB
testcase_01 AC 31 ms
52,164 KB
testcase_02 AC 34 ms
53,196 KB
testcase_03 AC 31 ms
52,428 KB
testcase_04 AC 31 ms
52,316 KB
testcase_05 AC 31 ms
52,752 KB
testcase_06 AC 30 ms
52,552 KB
testcase_07 AC 31 ms
52,708 KB
testcase_08 AC 30 ms
52,884 KB
testcase_09 AC 31 ms
52,836 KB
testcase_10 AC 70 ms
79,044 KB
testcase_11 AC 77 ms
93,260 KB
testcase_12 AC 97 ms
95,792 KB
testcase_13 AC 72 ms
85,964 KB
testcase_14 AC 69 ms
85,856 KB
testcase_15 AC 72 ms
76,392 KB
testcase_16 AC 88 ms
87,316 KB
testcase_17 AC 98 ms
91,508 KB
testcase_18 AC 76 ms
91,508 KB
testcase_19 AC 108 ms
93,536 KB
testcase_20 AC 111 ms
96,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
l = list(map(str, input().split()))
b = [int(l[i]) for i in range(1, m+1)]

op = l[0]
#print(op)
#rint(b)

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

#print(a)
#print(b)

if op == '+':
    ans = (sum(b)*n + sum(a)*m)%k
else:
    ans = (sum(a)*sum(b))%k
print(ans)
0