結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 36 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 124 ms
12,416 KB
testcase_11 AC 69 ms
18,144 KB
testcase_12 AC 206 ms
18,364 KB
testcase_13 AC 90 ms
15,168 KB
testcase_14 AC 76 ms
15,292 KB
testcase_15 AC 168 ms
10,752 KB
testcase_16 AC 211 ms
15,324 KB
testcase_17 AC 254 ms
16,944 KB
testcase_18 AC 77 ms
17,168 KB
testcase_19 AC 208 ms
17,528 KB
testcase_20 AC 311 ms
18,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
op,*B=input().split()
bsm=sum(int(s) for s in B)
sum=0
if op=='+':
    for _ in range(N):
        sum += bsm+int(input())*M
else:
    for _ in range(N):
        sum += bsm*int(input())
print(sum%K)
0