結果

問題 No.988 N×Mマス計算(総和)
ユーザー liny_tailliny_tail
提出日時 2023-01-03 18:16:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,335 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,020 KB
最終ジャッジ日時 2024-11-27 02:22:13
合計ジャッジ時間 10,541 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 313 ms
12,416 KB
testcase_11 AC 896 ms
18,028 KB
testcase_12 AC 1,111 ms
18,372 KB
testcase_13 AC 664 ms
15,172 KB
testcase_14 AC 629 ms
15,176 KB
testcase_15 AC 168 ms
10,624 KB
testcase_16 AC 792 ms
15,208 KB
testcase_17 AC 1,036 ms
16,852 KB
testcase_18 AC 847 ms
17,052 KB
testcase_19 AC 1,093 ms
17,528 KB
testcase_20 AC 1,335 ms
19,020 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