結果

問題 No.988 N×Mマス計算(総和)
ユーザー 💕💖💞💕💖💞
提出日時 2020-03-31 16:48:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 703 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 52,396 KB
最終ジャッジ日時 2024-07-06 07:40:50
合計ジャッジ時間 12,759 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 450 ms
44,080 KB
testcase_01 AC 459 ms
44,456 KB
testcase_02 AC 449 ms
44,080 KB
testcase_03 AC 445 ms
44,340 KB
testcase_04 AC 443 ms
44,588 KB
testcase_05 AC 452 ms
44,088 KB
testcase_06 AC 444 ms
44,212 KB
testcase_07 AC 438 ms
44,208 KB
testcase_08 AC 449 ms
44,216 KB
testcase_09 AC 444 ms
44,208 KB
testcase_10 AC 526 ms
44,980 KB
testcase_11 AC 478 ms
51,116 KB
testcase_12 AC 614 ms
51,368 KB
testcase_13 AC 501 ms
47,660 KB
testcase_14 AC 482 ms
47,540 KB
testcase_15 AC 564 ms
44,852 KB
testcase_16 AC 601 ms
48,104 KB
testcase_17 AC 636 ms
50,276 KB
testcase_18 AC 488 ms
50,484 KB
testcase_19 AC 666 ms
50,360 KB
testcase_20 AC 703 ms
52,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n,m,k = map(int, input().split())
l1 = input().split()
op = l1.pop(0)

bs = np.array(list(map(int, l1))) % k
ax = np.array([int(input()) for a in range(n)]) % k
if op == '+':
    print( (bs.sum() * n  + ax.sum() * m) % k)
else:
    x = ((bs.sum()%k) * (ax.sum()%k))%k
    print(x)
0