結果

問題 No.369 足し間違い
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-14 09:47:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 100 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,628 KB
実行使用メモリ 60,612 KB
最終ジャッジ日時 2024-09-17 16:28:00
合計ジャッジ時間 816 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,624 KB
testcase_01 AC 34 ms
52,484 KB
testcase_02 AC 32 ms
52,516 KB
testcase_03 AC 37 ms
53,320 KB
testcase_04 AC 36 ms
60,612 KB
testcase_05 AC 38 ms
59,756 KB
testcase_06 AC 36 ms
60,436 KB
testcase_07 AC 35 ms
60,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))
x = int(input())
sum_A = sum(A)
print(sum_A - x)
0