結果

問題 No.369 足し間違い
ユーザー SuburiSuburi
提出日時 2020-09-25 00:52:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 1,263 ms
コンパイル使用メモリ 10,676 KB
実行使用メモリ 9,312 KB
最終ジャッジ日時 2023-09-10 14:17:17
合計ジャッジ時間 2,079 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,888 KB
testcase_01 AC 16 ms
7,888 KB
testcase_02 AC 15 ms
7,904 KB
testcase_03 AC 15 ms
7,884 KB
testcase_04 AC 18 ms
9,104 KB
testcase_05 AC 16 ms
7,964 KB
testcase_06 AC 18 ms
9,312 KB
testcase_07 AC 18 ms
9,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split(' ')))
ν = int(input())

A_sum = sum(A)

result = A_sum - ν

print(result)
0