結果

問題 No.988 N×Mマス計算(総和)
ユーザー dangodango
提出日時 2023-06-16 19:56:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 568 ms
コンパイル使用メモリ 87,180 KB
実行使用メモリ 91,480 KB
最終ジャッジ日時 2023-09-06 17:22:24
合計ジャッジ時間 4,605 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,532 KB
testcase_01 AC 75 ms
71,480 KB
testcase_02 AC 72 ms
71,408 KB
testcase_03 AC 71 ms
71,264 KB
testcase_04 AC 72 ms
71,292 KB
testcase_05 AC 72 ms
71,556 KB
testcase_06 AC 72 ms
71,260 KB
testcase_07 AC 73 ms
71,212 KB
testcase_08 AC 72 ms
71,460 KB
testcase_09 AC 72 ms
71,424 KB
testcase_10 AC 111 ms
80,076 KB
testcase_11 AC 113 ms
89,980 KB
testcase_12 AC 136 ms
91,132 KB
testcase_13 AC 113 ms
85,568 KB
testcase_14 AC 110 ms
85,440 KB
testcase_15 AC 112 ms
77,916 KB
testcase_16 AC 131 ms
86,192 KB
testcase_17 AC 137 ms
88,888 KB
testcase_18 AC 115 ms
88,912 KB
testcase_19 AC 132 ms
89,404 KB
testcase_20 AC 149 ms
91,480 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