結果

問題 No.988 N×Mマス計算(総和)
ユーザー liny_tailliny_tail
提出日時 2023-01-03 18:16:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,323 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,068 KB
最終ジャッジ日時 2024-05-05 07:34:41
合計ジャッジ時間 9,891 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 300 ms
12,416 KB
testcase_11 AC 927 ms
18,160 KB
testcase_12 AC 1,078 ms
18,504 KB
testcase_13 AC 672 ms
15,212 KB
testcase_14 AC 576 ms
15,308 KB
testcase_15 AC 156 ms
10,880 KB
testcase_16 AC 770 ms
15,336 KB
testcase_17 AC 1,004 ms
16,984 KB
testcase_18 AC 822 ms
17,176 KB
testcase_19 AC 1,064 ms
17,660 KB
testcase_20 AC 1,323 ms
19,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().strip().split(' '))

tmp = input().strip().split(' ')
op = tmp[0]
B = tmp[1:]

A = 0
for i in range(N):
  A += int(input().strip())

ans = 0

for x in range(M):
  if op == '+':
    ans += (eval(str(A) + op + B[x] + '*' + str(N))) % K
  else:
    ans += (eval(str(A) + op + B[x])) % K

print(ans % K)
0