結果

問題 No.988 N×Mマス計算(総和)
ユーザー mnrmnr
提出日時 2020-03-08 16:10:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 433 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 61,144 KB
最終ジャッジ日時 2024-07-06 07:34:55
合計ジャッジ時間 11,828 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 515 ms
50,912 KB
testcase_01 AC 512 ms
43,828 KB
testcase_02 AC 520 ms
43,696 KB
testcase_03 AC 513 ms
43,956 KB
testcase_04 AC 518 ms
43,952 KB
testcase_05 AC 512 ms
43,956 KB
testcase_06 AC 520 ms
44,092 KB
testcase_07 AC 514 ms
44,212 KB
testcase_08 AC 519 ms
43,944 KB
testcase_09 AC 514 ms
43,700 KB
testcase_10 AC 1,076 ms
45,536 KB
testcase_11 AC 902 ms
50,864 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N,M,K = map(int,input().split())
B = input().split()
Bi = []
for i in range(1,M+1):
    Bi.insert(i-1,(int(B[i])%K))

A = []
for i in range(N):
    A.append(int(input())%K)
arra = np.array(A)
arrb = np.array(Bi)

ans = 0
if B[0] == '+':
    ans = (arra.sum()%K)*(M%K) + (arrb.sum()%K)*(N%K)
    ans %= K
elif B[0] == '*':
    for i in range(M):
        ans += (arrb[i] * (arra.sum()%K))
        ans %= K
print(ans)
0