結果

問題 No.988 N×Mマス計算(総和)
ユーザー kota_ritskota_rits
提出日時 2020-02-14 21:54:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 23,364 KB
最終ジャッジ日時 2024-07-06 07:08:57
合計ジャッジ時間 2,591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,368 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,496 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 77 ms
14,368 KB
testcase_11 AC 116 ms
20,624 KB
testcase_12 AC 164 ms
23,364 KB
testcase_13 AC 74 ms
17,220 KB
testcase_14 AC 91 ms
17,092 KB
testcase_15 AC 72 ms
13,056 KB
testcase_16 AC 112 ms
19,668 KB
testcase_17 AC 132 ms
22,152 KB
testcase_18 AC 100 ms
19,500 KB
testcase_19 AC 117 ms
20,440 KB
testcase_20 AC 153 ms
22,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
n,m,k = map(int,stdin.readline().rstrip().split())
li = list(map(str,stdin.readline().rstrip().split()))
op = li[0]
b = [int(li[i]) for i in range(1,m+1)]
a = [int(stdin.readline().rstrip())%k for _ in range(n)]
A = sum(a)
B = sum(b)
point = 0
if op == "*":
    for i in range(m):
        point += A*b[i]%k
else:
    point += A*m+B*n
point%=k
print(point)
0