結果

問題 No.988 N×Mマス計算(総和)
ユーザー osrgy01osrgy01
提出日時 2021-04-17 10:25:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 19,056 KB
最終ジャッジ日時 2024-07-03 16:57:06
合計ジャッジ時間 3,359 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 111 ms
12,416 KB
testcase_11 AC 68 ms
18,140 KB
testcase_12 AC 181 ms
18,488 KB
testcase_13 AC 83 ms
15,288 KB
testcase_14 AC 71 ms
15,412 KB
testcase_15 AC 145 ms
10,752 KB
testcase_16 AC 190 ms
15,412 KB
testcase_17 AC 227 ms
16,968 KB
testcase_18 AC 76 ms
17,172 KB
testcase_19 AC 184 ms
17,656 KB
testcase_20 AC 281 ms
19,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
t=input().split()
op=t[0]
M=sum(int(i) for i in t[1:])
N=sum(int(input()) for _ in range(n))
if op=='+':
    print((n*M+m*N)%k)
else:
    print((M*N)%k)
0