結果

問題 No.988 N×Mマス計算(総和)
ユーザー shika_126shika_126
提出日時 2022-04-09 01:03:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,920 KB
最終ジャッジ日時 2024-05-06 10:32:41
合計ジャッジ時間 3,528 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,624 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,752 KB
testcase_10 AC 128 ms
12,416 KB
testcase_11 AC 62 ms
18,140 KB
testcase_12 AC 202 ms
18,488 KB
testcase_13 AC 84 ms
15,192 KB
testcase_14 AC 73 ms
15,160 KB
testcase_15 AC 165 ms
10,752 KB
testcase_16 AC 209 ms
15,292 KB
testcase_17 AC 241 ms
16,968 KB
testcase_18 AC 74 ms
17,160 KB
testcase_19 AC 204 ms
17,644 KB
testcase_20 AC 291 ms
18,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())
p,*a = input().split()
a = sum(map(int,a))
s = 0
if p =='*':
    for i in range(n):
        s += int(input())*a
else:
    for i in range(n):
        s += int(input())*m
    s += a*n
print(s%k)
0