結果

問題 No.988 N×Mマス計算(総和)
ユーザー miya145592miya145592
提出日時 2023-05-21 03:55:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 95,872 KB
最終ジャッジ日時 2024-12-21 14:37:19
合計ジャッジ時間 3,261 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 44 ms
51,840 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 41 ms
52,352 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 40 ms
51,584 KB
testcase_10 AC 91 ms
78,976 KB
testcase_11 AC 97 ms
93,824 KB
testcase_12 AC 125 ms
95,360 KB
testcase_13 AC 91 ms
85,504 KB
testcase_14 AC 89 ms
85,984 KB
testcase_15 AC 89 ms
76,672 KB
testcase_16 AC 113 ms
86,784 KB
testcase_17 AC 118 ms
90,624 KB
testcase_18 AC 92 ms
91,008 KB
testcase_19 AC 114 ms
92,544 KB
testcase_20 AC 137 ms
95,872 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