結果

問題 No.988 N×Mマス計算(総和)
ユーザー GrayCoderGrayCoder
提出日時 2020-02-14 22:09:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,592 KB
最終ジャッジ日時 2024-07-06 06:50:04
合計ジャッジ時間 2,037 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 24 ms
10,624 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 AC 24 ms
10,624 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 24 ms
10,624 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 58 ms
13,844 KB
testcase_11 AC 59 ms
18,004 KB
testcase_12 AC 100 ms
21,000 KB
testcase_13 AC 56 ms
15,824 KB
testcase_14 AC 49 ms
15,568 KB
testcase_15 AC 74 ms
13,440 KB
testcase_16 AC 99 ms
17,856 KB
testcase_17 AC 120 ms
19,884 KB
testcase_18 AC 57 ms
17,164 KB
testcase_19 AC 97 ms
20,360 KB
testcase_20 AC 133 ms
22,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce
from operator import add
from sys import stdin


def main():
    input = lambda: stdin.readline()[:-1]
    N, M, K = map(int, input().split())
    B = input().split()
    A = [int(input()) for _ in [0] * N]

    an = reduce(add, A) % K
    bm = reduce(add, map(int, B[1:])) % K
    if B[0] == '+':
        ans = 0
        for a in A:
            am = (a * M) % K
            ans = (ans + am + bm) % K
    else:
        ans = (an * bm) % K
    print(ans)


main()
0