結果

問題 No.988 N×Mマス計算(総和)
ユーザー Ytz_IchiYtz_Ichi
提出日時 2020-02-15 03:12:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,076 KB
最終ジャッジ日時 2024-07-06 07:22:23
合計ジャッジ時間 2,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 121 ms
13,184 KB
testcase_11 AC 91 ms
18,160 KB
testcase_12 AC 211 ms
18,944 KB
testcase_13 AC 98 ms
15,308 KB
testcase_14 AC 87 ms
15,300 KB
testcase_15 AC 146 ms
13,184 KB
testcase_16 AC 199 ms
16,056 KB
testcase_17 AC 239 ms
17,832 KB
testcase_18 AC 85 ms
17,180 KB
testcase_19 AC 192 ms
17,656 KB
testcase_20 AC 287 ms
19,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, s = map(int, input().split())
x = input().split()
j = 1
for i in range(len(x) - 1):
    x[j] = (int(x[j])) % s
    j += 1
y = [(int(input())) % s for i in range(n)]

total = 0
if x[0] == "+":
    total = m * sum(y) + n * sum(x[1:])
else:
    total = sum(x[1:]) * sum(y)
print(total % s)
0