結果

問題 No.988 N×Mマス計算(総和)
ユーザー KodaiKodai
提出日時 2020-04-14 22:47:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 772 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 52,980 KB
最終ジャッジ日時 2024-07-06 07:41:43
合計ジャッジ時間 13,364 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 493 ms
43,812 KB
testcase_01 AC 495 ms
44,200 KB
testcase_02 AC 506 ms
44,068 KB
testcase_03 AC 491 ms
44,588 KB
testcase_04 AC 505 ms
44,460 KB
testcase_05 AC 501 ms
44,204 KB
testcase_06 AC 506 ms
44,468 KB
testcase_07 AC 490 ms
43,944 KB
testcase_08 AC 507 ms
44,208 KB
testcase_09 AC 510 ms
44,204 KB
testcase_10 AC 599 ms
45,228 KB
testcase_11 AC 554 ms
51,756 KB
testcase_12 AC 674 ms
52,000 KB
testcase_13 AC 555 ms
47,668 KB
testcase_14 AC 536 ms
48,168 KB
testcase_15 AC 622 ms
44,588 KB
testcase_16 AC 665 ms
48,108 KB
testcase_17 AC 705 ms
50,664 KB
testcase_18 AC 560 ms
49,968 KB
testcase_19 AC 680 ms
51,152 KB
testcase_20 AC 772 ms
52,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N, M, K = list(map(int, input().split()))
op, *B_list = input().split()
B_array = np.array(list(map(int, B_list)))

sum = 0
if op == "+":
    sum += np.sum((B_array*(N % K)) % K)
    A_array = np.array([int(input()) for i in range(N)])
    sum += np.sum((A_array*(M % K)) % K)
else:
    A_array = np.array([int(input()) for i in range(N)])
    temp_sum = np.sum(A_array) % K
    sum += np.sum((B_array*temp_sum) % K)

print(sum % K)
0