結果

問題 No.988 N×Mマス計算(総和)
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-11 22:57:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 93,260 KB
最終ジャッジ日時 2024-06-11 22:57:32
合計ジャッジ時間 2,322 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,888 KB
testcase_01 AC 32 ms
53,080 KB
testcase_02 AC 32 ms
53,020 KB
testcase_03 AC 32 ms
53,468 KB
testcase_04 AC 32 ms
53,084 KB
testcase_05 AC 32 ms
52,444 KB
testcase_06 AC 32 ms
52,424 KB
testcase_07 AC 33 ms
53,660 KB
testcase_08 AC 32 ms
52,932 KB
testcase_09 AC 32 ms
53,228 KB
testcase_10 AC 82 ms
78,700 KB
testcase_11 AC 81 ms
90,872 KB
testcase_12 AC 100 ms
92,488 KB
testcase_13 AC 74 ms
84,656 KB
testcase_14 AC 73 ms
84,528 KB
testcase_15 AC 75 ms
76,916 KB
testcase_16 AC 88 ms
85,672 KB
testcase_17 AC 99 ms
89,168 KB
testcase_18 AC 75 ms
89,728 KB
testcase_19 AC 118 ms
90,748 KB
testcase_20 AC 112 ms
93,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
op, *B = input().split()
B = list(map(int, B))
A = [int(input()) for _ in range(n)]
if op == '+':
    res = (sum(A) % k) * m % k + (sum(B) % k) * n % k
    res %= k
else:
    res = (sum(A) % k) * (sum(B) % k) % k
    res %= k
print(res)
0