結果

問題 No.988 N×Mマス計算(総和)
ユーザー s_shoheis_shohei
提出日時 2020-04-11 16:30:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 95,468 KB
最終ジャッジ日時 2024-07-06 07:41:25
合計ジャッジ時間 2,478 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,204 KB
testcase_01 AC 38 ms
52,504 KB
testcase_02 AC 39 ms
53,304 KB
testcase_03 AC 38 ms
52,368 KB
testcase_04 AC 38 ms
52,204 KB
testcase_05 AC 37 ms
53,520 KB
testcase_06 AC 37 ms
53,140 KB
testcase_07 AC 38 ms
52,328 KB
testcase_08 AC 37 ms
53,016 KB
testcase_09 AC 38 ms
53,292 KB
testcase_10 AC 84 ms
78,900 KB
testcase_11 AC 92 ms
92,468 KB
testcase_12 AC 114 ms
94,896 KB
testcase_13 AC 86 ms
85,864 KB
testcase_14 AC 83 ms
85,508 KB
testcase_15 AC 85 ms
76,760 KB
testcase_16 AC 104 ms
86,628 KB
testcase_17 AC 114 ms
90,120 KB
testcase_18 AC 89 ms
90,240 KB
testcase_19 AC 109 ms
92,356 KB
testcase_20 AC 132 ms
95,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int, input().split())
tmp = list(map(str, input().split()))
a=[int(input()) for i in range(n)]

op=tmp[0]
b=[]
for num in tmp[1:]:
    b.append(int(num))

sm_a=sum(a)
sm_b=sum(b)

if op=="*":
    ans=sm_a*sm_b
else:
    ans=sm_a*len(b) + sm_b*len(a)

print(ans%k)
0