結果

問題 No.988 N×Mマス計算(総和)
ユーザー pluto77pluto77
提出日時 2020-02-24 09:46:09
言語 Python2
(2.7.18)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 7,196 KB
実行使用メモリ 21,780 KB
最終ジャッジ日時 2024-07-06 07:29:53
合計ジャッジ時間 2,789 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 10 ms
6,940 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 10 ms
6,944 KB
testcase_04 AC 11 ms
6,944 KB
testcase_05 AC 10 ms
6,944 KB
testcase_06 AC 10 ms
6,944 KB
testcase_07 AC 10 ms
6,940 KB
testcase_08 AC 11 ms
6,940 KB
testcase_09 AC 10 ms
6,940 KB
testcase_10 AC 81 ms
10,624 KB
testcase_11 AC 72 ms
17,180 KB
testcase_12 AC 153 ms
18,468 KB
testcase_13 AC 66 ms
13,064 KB
testcase_14 AC 60 ms
13,012 KB
testcase_15 AC 101 ms
9,984 KB
testcase_16 AC 146 ms
15,840 KB
testcase_17 AC 175 ms
18,240 KB
testcase_18 AC 70 ms
15,792 KB
testcase_19 AC 146 ms
17,368 KB
testcase_20 AC 217 ms
21,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki987
n,m,k=map(int,raw_input().split())
op=raw_input().split()
b=[]
for i in range(1,len(op)):
 b.append(int(op[i]))
a=[]
for i in range(n):
 a.append(int(raw_input()))
if op[0]=='+':
 print (sum(a)*m+sum(b)*n)%k
else:
 print (sum(a)*sum(b))%k
0