結果
問題 | No.1389 Clumsy Calculation |
ユーザー | chineristAC |
提出日時 | 2020-08-27 23:01:33 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 103 ms / 2,000 ms |
コード長 | 142 bytes |
コンパイル時間 | 196 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 107,776 KB |
最終ジャッジ日時 | 2024-07-19 18:23:18 |
合計ジャッジ時間 | 5,011 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 26 |
ソースコード
N,X = map(int,input().split()) S = list(map(int,input().split())) pre_A = [X-S[i] for i in range(N)] wrong_A = sum(pre_A) print(X-wrong_A)