結果

問題 No.988 N×Mマス計算(総和)
ユーザー r_ishidar_ishida
提出日時 2020-02-15 18:26:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,708 KB
最終ジャッジ日時 2024-07-06 07:23:11
合計ジャッジ時間 2,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 25 ms
10,496 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 25 ms
10,496 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 24 ms
10,624 KB
testcase_10 AC 110 ms
13,184 KB
testcase_11 AC 59 ms
21,404 KB
testcase_12 AC 186 ms
22,008 KB
testcase_13 AC 78 ms
17,216 KB
testcase_14 AC 64 ms
17,340 KB
testcase_15 AC 156 ms
10,880 KB
testcase_16 AC 196 ms
17,456 KB
testcase_17 AC 229 ms
19,864 KB
testcase_18 AC 65 ms
20,088 KB
testcase_19 AC 181 ms
20,732 KB
testcase_20 AC 283 ms
22,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int,input().split())
s = input().split()
op = s[0]
b = list(map(int, s[1:]))
sb = sum(b)%k
ans = 0
for _ in range(n):
    if op == '+':
        ans += (int(input())*m+sb)%k
    else:
        ans += int(input())*sb%k
print(ans%k)
0