結果

問題 No.988 N×Mマス計算(総和)
ユーザー miya145592miya145592
提出日時 2023-05-21 03:55:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 87,208 KB
実行使用メモリ 96,720 KB
最終ジャッジ日時 2023-08-23 11:55:04
合計ジャッジ時間 4,943 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,324 KB
testcase_01 AC 69 ms
71,260 KB
testcase_02 AC 72 ms
71,448 KB
testcase_03 AC 71 ms
71,148 KB
testcase_04 AC 72 ms
71,068 KB
testcase_05 AC 71 ms
71,316 KB
testcase_06 AC 71 ms
71,120 KB
testcase_07 AC 73 ms
71,420 KB
testcase_08 AC 72 ms
71,228 KB
testcase_09 AC 71 ms
71,312 KB
testcase_10 AC 117 ms
79,836 KB
testcase_11 AC 121 ms
94,544 KB
testcase_12 AC 141 ms
96,592 KB
testcase_13 AC 113 ms
87,108 KB
testcase_14 AC 112 ms
87,064 KB
testcase_15 AC 114 ms
78,060 KB
testcase_16 AC 131 ms
87,872 KB
testcase_17 AC 142 ms
92,308 KB
testcase_18 AC 118 ms
92,704 KB
testcase_19 AC 139 ms
94,636 KB
testcase_20 AC 157 ms
96,720 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