結果

問題 No.988 N×Mマス計算(総和)
ユーザー tter4tter4
提出日時 2020-02-14 22:12:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 97,064 KB
最終ジャッジ日時 2024-07-06 07:18:05
合計ジャッジ時間 2,197 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,888 KB
testcase_01 AC 33 ms
52,412 KB
testcase_02 AC 33 ms
52,876 KB
testcase_03 AC 32 ms
53,620 KB
testcase_04 AC 33 ms
52,700 KB
testcase_05 AC 32 ms
53,536 KB
testcase_06 AC 33 ms
52,756 KB
testcase_07 AC 34 ms
52,404 KB
testcase_08 AC 36 ms
53,904 KB
testcase_09 AC 33 ms
52,196 KB
testcase_10 AC 73 ms
78,964 KB
testcase_11 AC 80 ms
94,220 KB
testcase_12 AC 99 ms
96,392 KB
testcase_13 AC 75 ms
86,556 KB
testcase_14 AC 71 ms
86,300 KB
testcase_15 AC 73 ms
76,608 KB
testcase_16 AC 89 ms
87,924 KB
testcase_17 AC 100 ms
91,444 KB
testcase_18 AC 76 ms
91,916 KB
testcase_19 AC 97 ms
94,400 KB
testcase_20 AC 114 ms
97,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
opb = list(map(str, input().split()))
op = opb[0]
b = [int(x) for x in opb[1:]]
a = [int(input()) for _ in range(n)]

total = 0
if op == '+':
    total += sum(a) * m % k + sum(b) * n % k
    total %= k
else:
    sumb = sum(b) % k
    suma = sum(a) % k
    total = suma * sumb % k

print(total)
0