結果

問題 No.988 N×Mマス計算(総和)
ユーザー kbyskbys
提出日時 2020-03-29 01:03:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,292 KB
最終ジャッジ日時 2024-07-06 07:39:03
合計ジャッジ時間 3,072 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 129 ms
13,684 KB
testcase_11 AC 67 ms
22,424 KB
testcase_12 AC 210 ms
23,076 KB
testcase_13 AC 83 ms
17,468 KB
testcase_14 AC 74 ms
17,476 KB
testcase_15 AC 161 ms
13,056 KB
testcase_16 AC 203 ms
17,588 KB
testcase_17 AC 238 ms
19,920 KB
testcase_18 AC 75 ms
20,376 KB
testcase_19 AC 195 ms
21,116 KB
testcase_20 AC 292 ms
23,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#988
import collections
N,M,K = map(int,input().split())
B = input()
op = B[0]
B = list(map(int,B[1:].split()))

A = [None]*N
for i in range(N):
    A[i] = int(input())

if op == "+":
    print((N*sum(B)+M*sum(A))%K)
else:
    ans = 0
    sb = sum(B)
    for a in A:
        ans += a*sb
    print(ans%K)
0