結果

問題 No.988 N×Mマス計算(総和)
ユーザー DrumatoDrumato
提出日時 2020-02-14 22:12:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,952 KB
最終ジャッジ日時 2024-07-06 07:17:41
合計ジャッジ時間 2,649 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 23 ms
10,624 KB
testcase_03 AC 23 ms
10,752 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 23 ms
10,752 KB
testcase_07 AC 24 ms
10,624 KB
testcase_08 AC 24 ms
10,752 KB
testcase_09 AC 23 ms
10,752 KB
testcase_10 AC 98 ms
13,716 KB
testcase_11 AC 60 ms
20,660 KB
testcase_12 AC 165 ms
21,256 KB
testcase_13 AC 83 ms
16,848 KB
testcase_14 AC 60 ms
16,976 KB
testcase_15 AC 135 ms
13,184 KB
testcase_16 AC 188 ms
16,960 KB
testcase_17 AC 221 ms
19,112 KB
testcase_18 AC 64 ms
19,336 KB
testcase_19 AC 184 ms
20,104 KB
testcase_20 AC 274 ms
21,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
op, *b = input().split()
b = [int(x) for x in b]
a = [int(input()) for _ in range(n)]

res = 0
if op == '+':
    for be in b:
        res += be * n
    for ae in a:
        res += ae * m
else:
    res = 0
    aa = sum(a)
    bb = sum(b)
    #for ae in a:
        #res += ae * bb
    res = aa * bb

print(res % k)
0