結果

問題 No.988 N×Mマス計算(総和)
ユーザー qqqqqqqqqq
提出日時 2020-02-14 21:26:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 92,928 KB
最終ジャッジ日時 2024-07-06 06:51:39
合計ジャッジ時間 2,041 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,840 KB
testcase_01 AC 33 ms
51,712 KB
testcase_02 AC 33 ms
51,584 KB
testcase_03 AC 33 ms
51,456 KB
testcase_04 AC 32 ms
51,584 KB
testcase_05 AC 32 ms
51,968 KB
testcase_06 AC 32 ms
51,840 KB
testcase_07 AC 33 ms
51,712 KB
testcase_08 AC 32 ms
51,712 KB
testcase_09 AC 31 ms
51,712 KB
testcase_10 AC 62 ms
77,440 KB
testcase_11 AC 70 ms
86,656 KB
testcase_12 AC 84 ms
92,800 KB
testcase_13 AC 65 ms
82,176 KB
testcase_14 AC 62 ms
80,000 KB
testcase_15 AC 62 ms
76,416 KB
testcase_16 AC 75 ms
84,992 KB
testcase_17 AC 82 ms
88,448 KB
testcase_18 AC 68 ms
86,016 KB
testcase_19 AC 81 ms
90,112 KB
testcase_20 AC 90 ms
92,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
reader = (s.rstrip() for s in sys.stdin)
input = reader.__next__


n,m,k = map(int, input().split())
op, *B = input().split()
B = list(map(int, B))
A = [int(input()) for i in range(n)]

if op == "+":
    ans = sum(A)*m + sum(B)*n
    ans %= k
else:
    sum_B = sum(B)
    sum_A = sum(A)
    ans = sum_A*sum_B
    ans %= k
print(ans)
0