結果

問題 No.988 N×Mマス計算(総和)
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-02-14 22:01:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 96,324 KB
最終ジャッジ日時 2024-07-06 07:15:36
合計ジャッジ時間 2,479 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,888 KB
testcase_01 AC 36 ms
53,120 KB
testcase_02 AC 37 ms
52,332 KB
testcase_03 AC 38 ms
54,408 KB
testcase_04 AC 37 ms
52,996 KB
testcase_05 AC 37 ms
53,216 KB
testcase_06 AC 38 ms
53,320 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 38 ms
53,744 KB
testcase_09 AC 37 ms
52,324 KB
testcase_10 AC 81 ms
78,604 KB
testcase_11 AC 88 ms
94,236 KB
testcase_12 AC 113 ms
95,704 KB
testcase_13 AC 82 ms
85,912 KB
testcase_14 AC 80 ms
86,160 KB
testcase_15 AC 83 ms
76,228 KB
testcase_16 AC 101 ms
87,300 KB
testcase_17 AC 110 ms
91,116 KB
testcase_18 AC 86 ms
91,272 KB
testcase_19 AC 107 ms
93,516 KB
testcase_20 AC 124 ms
96,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, L = map(int, input().split())
bs = []
c = 0
for i in range(N+1):
    if i == 0:
        X = input().split()
        e = X[0] == '+'
        b = sum(list(map(int, X[1:])))
        continue
    c += int(input())
if e:
    print((b*N+c*M)%L)
else:
    print(b*c%L)
0