結果

問題 No.988 N×Mマス計算(総和)
ユーザー motor_radialmotor_radial
提出日時 2020-03-11 17:48:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,816 KB
最終ジャッジ日時 2024-07-06 07:36:09
合計ジャッジ時間 2,924 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 115 ms
12,800 KB
testcase_11 AC 62 ms
20,768 KB
testcase_12 AC 196 ms
21,240 KB
testcase_13 AC 81 ms
16,704 KB
testcase_14 AC 68 ms
16,708 KB
testcase_15 AC 155 ms
10,880 KB
testcase_16 AC 202 ms
16,820 KB
testcase_17 AC 236 ms
19,104 KB
testcase_18 AC 71 ms
19,324 KB
testcase_19 AC 186 ms
20,092 KB
testcase_20 AC 291 ms
21,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
opB=list(input().split())
op=opB.pop(0)
B=sum([int(i) for i in opB])
s=0
for _ in range(N):
    A=int(input())
    if op=="*":
        s+=(B*A)
    elif op=="+":
        s+=(B+M*A)
print(s%K)
0