結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 24 ms
10,368 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 24 ms
10,496 KB
testcase_04 AC 23 ms
10,496 KB
testcase_05 AC 24 ms
10,496 KB
testcase_06 AC 24 ms
10,624 KB
testcase_07 AC 24 ms
10,496 KB
testcase_08 AC 24 ms
10,496 KB
testcase_09 AC 23 ms
10,496 KB
testcase_10 AC 40 ms
14,336 KB
testcase_11 AC 52 ms
20,760 KB
testcase_12 AC 72 ms
23,924 KB
testcase_13 AC 47 ms
17,856 KB
testcase_14 AC 44 ms
17,592 KB
testcase_15 AC 40 ms
13,056 KB
testcase_16 AC 60 ms
19,628 KB
testcase_17 AC 69 ms
22,040 KB
testcase_18 AC 50 ms
19,700 KB
testcase_19 AC 66 ms
22,648 KB
testcase_20 AC 83 ms
25,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
n, m, k = map(int, input().split())
op, *B = input().split()
A = list(map(int, sys.stdin))
B = list(map(int, B))
print({"+":(sum(A)*m + n*sum(B)), "*":sum(A)*sum(B)}[op]%k)
0