結果

問題 No.988 N×Mマス計算(総和)
ユーザー neterukunneterukun
提出日時 2020-02-14 21:28:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 90,968 KB
最終ジャッジ日時 2024-07-06 06:55:44
合計ジャッジ時間 2,205 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,096 KB
testcase_01 AC 31 ms
51,968 KB
testcase_02 AC 32 ms
52,096 KB
testcase_03 AC 31 ms
51,456 KB
testcase_04 AC 31 ms
52,480 KB
testcase_05 AC 30 ms
51,968 KB
testcase_06 AC 31 ms
51,968 KB
testcase_07 AC 32 ms
52,096 KB
testcase_08 AC 32 ms
52,096 KB
testcase_09 AC 31 ms
52,352 KB
testcase_10 AC 77 ms
78,616 KB
testcase_11 AC 67 ms
83,072 KB
testcase_12 AC 95 ms
89,856 KB
testcase_13 AC 71 ms
83,200 KB
testcase_14 AC 71 ms
83,328 KB
testcase_15 AC 75 ms
76,544 KB
testcase_16 AC 87 ms
83,840 KB
testcase_17 AC 92 ms
86,528 KB
testcase_18 AC 73 ms
86,528 KB
testcase_19 AC 100 ms
87,808 KB
testcase_20 AC 105 ms
90,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = list(map(int, input().split()))
op = list(input().split())
b = [int(op[i]) for i in range(1, m + 1)]
a = [int(input()) for i in range(n)]

if op[0] == "+":
    ans = sum(a) * m + sum(b) *n
    print(ans % k)
else:
    ans = sum(a)* sum(b)
    print(ans % k)
0