結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 133 ms
13,184 KB
testcase_11 AC 73 ms
21,492 KB
testcase_12 AC 229 ms
22,900 KB
testcase_13 AC 93 ms
17,228 KB
testcase_14 AC 80 ms
17,220 KB
testcase_15 AC 176 ms
10,880 KB
testcase_16 AC 228 ms
17,460 KB
testcase_17 AC 272 ms
19,876 KB
testcase_18 AC 83 ms
20,116 KB
testcase_19 AC 221 ms
20,876 KB
testcase_20 AC 326 ms
22,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = [int(zz) for zz in input().split()]
B = [zz for zz in input().split()]

s = B[0]
B = sum([int(zz) for zz in B[1:]])
def calc(s,a,b):
    if s == '+':
        return a*M+b
    elif s == '*':
        return a*b

tmp = 0
for i in range(N):
    a = int(input())
    tmp += calc(s,a,B)

print(tmp%K)
0