結果

問題 No.988 N×Mマス計算(総和)
ユーザー shika_126shika_126
提出日時 2022-04-09 01:03:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,052 KB
最終ジャッジ日時 2024-11-28 16:37:25
合計ジャッジ時間 3,506 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 125 ms
12,416 KB
testcase_11 AC 63 ms
18,140 KB
testcase_12 AC 198 ms
18,488 KB
testcase_13 AC 82 ms
15,288 KB
testcase_14 AC 72 ms
15,296 KB
testcase_15 AC 159 ms
10,752 KB
testcase_16 AC 204 ms
15,444 KB
testcase_17 AC 240 ms
16,960 KB
testcase_18 AC 74 ms
17,160 KB
testcase_19 AC 195 ms
17,640 KB
testcase_20 AC 293 ms
19,052 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