結果

問題 No.988 N×Mマス計算(総和)
ユーザー nohakai3nohakai3
提出日時 2022-07-24 17:50:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,680 KB
最終ジャッジ日時 2024-07-06 12:38:19
合計ジャッジ時間 3,953 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 120 ms
14,720 KB
testcase_11 AC 86 ms
21,412 KB
testcase_12 AC 222 ms
24,828 KB
testcase_13 AC 100 ms
18,144 KB
testcase_14 AC 86 ms
17,736 KB
testcase_15 AC 157 ms
13,056 KB
testcase_16 AC 212 ms
20,020 KB
testcase_17 AC 259 ms
22,948 KB
testcase_18 AC 97 ms
20,480 KB
testcase_19 AC 216 ms
23,304 KB
testcase_20 AC 312 ms
26,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
l1=list(map(str,input().split()))
l2=[]
for i in range(n):
    s=int(input())
    l2.append(s)

l4=l1[1:]

l3=[]
for x in l4:
    l3.append(int(x))

if l1[0]=="+":
    print((m*sum(l2)+n*sum(l3))%k)
else:
    print((sum(l2)*sum(l3))%k)
0