結果

問題 No.988 N×Mマス計算(総和)
ユーザー dangodango
提出日時 2023-06-16 19:56:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 91,124 KB
最終ジャッジ日時 2024-06-24 11:49:44
合計ジャッジ時間 3,017 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,948 KB
testcase_01 AC 37 ms
52,484 KB
testcase_02 AC 39 ms
53,852 KB
testcase_03 AC 37 ms
52,820 KB
testcase_04 AC 38 ms
52,504 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 38 ms
53,104 KB
testcase_07 AC 39 ms
52,644 KB
testcase_08 AC 38 ms
53,088 KB
testcase_09 AC 37 ms
52,272 KB
testcase_10 AC 81 ms
78,404 KB
testcase_11 AC 86 ms
89,600 KB
testcase_12 AC 108 ms
90,352 KB
testcase_13 AC 82 ms
83,816 KB
testcase_14 AC 80 ms
83,952 KB
testcase_15 AC 84 ms
76,460 KB
testcase_16 AC 101 ms
84,196 KB
testcase_17 AC 111 ms
87,812 KB
testcase_18 AC 85 ms
87,816 KB
testcase_19 AC 106 ms
88,972 KB
testcase_20 AC 124 ms
91,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
OP, *X = input().split()
A = sum(map(int, X))
B = sum([int(input()) for _ in range(N)])
print((A * N + B * M) % K if OP == '+' else A * B % K)
0