結果

問題 No.988 N×Mマス計算(総和)
ユーザー rlangevinrlangevin
提出日時 2024-07-30 08:56:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 92,036 KB
最終ジャッジ日時 2024-07-30 08:57:02
合計ジャッジ時間 3,159 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,628 KB
testcase_01 AC 36 ms
52,004 KB
testcase_02 AC 36 ms
53,136 KB
testcase_03 AC 37 ms
52,396 KB
testcase_04 AC 39 ms
53,192 KB
testcase_05 AC 36 ms
53,148 KB
testcase_06 AC 36 ms
52,268 KB
testcase_07 AC 37 ms
54,088 KB
testcase_08 AC 37 ms
51,936 KB
testcase_09 AC 38 ms
53,428 KB
testcase_10 AC 78 ms
77,600 KB
testcase_11 AC 82 ms
89,472 KB
testcase_12 AC 104 ms
91,584 KB
testcase_13 AC 79 ms
83,156 KB
testcase_14 AC 93 ms
83,224 KB
testcase_15 AC 84 ms
76,528 KB
testcase_16 AC 98 ms
84,780 KB
testcase_17 AC 105 ms
88,040 KB
testcase_18 AC 81 ms
87,440 KB
testcase_19 AC 101 ms
89,276 KB
testcase_20 AC 122 ms
92,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
B = input().split()
op = B.pop(0)
B = list(map(int, B))
A = [0] * N
for i in range(N):
    A[i] = int(input())
    
if op == "+":
    print((sum(A) * M + sum(B) * N)%K)
else:
    print((sum(A) * sum(B))%K)
0