結果

問題 No.369 足し間違い
ユーザー NASANASA
提出日時 2017-06-02 17:07:22
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 84 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 11,668 KB
実行使用メモリ 10,640 KB
最終ジャッジ日時 2023-10-21 20:47:21
合計ジャッジ時間 913 ms
ジャッジサーバーID
(参考情報)
judge15 / judge10
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
9,912 KB
testcase_01 AC 27 ms
9,912 KB
testcase_02 AC 27 ms
9,912 KB
testcase_03 AC 27 ms
9,912 KB
testcase_04 AC 30 ms
10,588 KB
testcase_05 AC 27 ms
10,028 KB
testcase_06 AC 30 ms
10,520 KB
testcase_07 AC 32 ms
10,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()
s=input().split()
f=int(input())
h=0
for i in s:
    h+=int(i)
print(h-f)
0