結果

問題 No.988 N×Mマス計算(総和)
ユーザー takakintakakin
提出日時 2020-04-30 21:41:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,760 KB
最終ジャッジ日時 2024-07-06 07:43:49
合計ジャッジ時間 2,032 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,496 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 23 ms
10,624 KB
testcase_03 AC 24 ms
10,496 KB
testcase_04 AC 24 ms
10,496 KB
testcase_05 AC 23 ms
10,496 KB
testcase_06 AC 24 ms
10,624 KB
testcase_07 AC 23 ms
10,496 KB
testcase_08 AC 24 ms
10,624 KB
testcase_09 AC 24 ms
10,624 KB
testcase_10 AC 55 ms
14,360 KB
testcase_11 AC 75 ms
20,664 KB
testcase_12 AC 116 ms
23,824 KB
testcase_13 AC 64 ms
17,624 KB
testcase_14 AC 61 ms
17,492 KB
testcase_15 AC 54 ms
12,928 KB
testcase_16 AC 90 ms
19,652 KB
testcase_17 AC 108 ms
22,196 KB
testcase_18 AC 72 ms
19,724 KB
testcase_19 AC 110 ms
22,416 KB
testcase_20 AC 143 ms
25,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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