結果

問題 No.988 N×Mマス計算(総和)
ユーザー miya145592miya145592
提出日時 2023-05-21 03:55:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 96,300 KB
最終ジャッジ日時 2024-06-01 09:32:06
合計ジャッジ時間 3,108 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 40 ms
52,736 KB
testcase_04 AC 41 ms
52,608 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 42 ms
52,352 KB
testcase_08 AC 40 ms
52,480 KB
testcase_09 AC 39 ms
52,228 KB
testcase_10 AC 86 ms
79,104 KB
testcase_11 AC 93 ms
94,236 KB
testcase_12 AC 115 ms
95,616 KB
testcase_13 AC 87 ms
85,900 KB
testcase_14 AC 85 ms
85,888 KB
testcase_15 AC 88 ms
76,828 KB
testcase_16 AC 107 ms
86,912 KB
testcase_17 AC 117 ms
90,872 KB
testcase_18 AC 90 ms
91,176 KB
testcase_19 AC 112 ms
93,108 KB
testcase_20 AC 129 ms
96,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
opB = input().split()
op = opB[0]
B = list(map(int, opB[1:]))
A = [int(input()) for _ in range(N)]
if op=="+":
    ans = 0
    for a in A:
        ans += a*M%K
        ans %= K
    for b in B:
        ans += b*N%K
        ans %= K
    print(ans)
else:
    s = 0
    for b in B:
        s += b
        s %= K
    ans = 0
    for a in A:
        ans += a*s%K
        ans %= K
    print(ans)
0