結果
問題 | No.5 数字のブロック |
ユーザー | siganai |
提出日時 | 2022-05-12 10:13:07 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 43 ms / 5,000 ms |
コード長 | 196 bytes |
コンパイル時間 | 247 ms |
コンパイル使用メモリ | 82,648 KB |
実行使用メモリ | 60,264 KB |
最終ジャッジ日時 | 2024-07-20 02:41:43 |
合計ジャッジ時間 | 2,469 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
l=int(input()) n=int(input()) w=list(map(int,input().split())) w.sort() ans = 0 s = 0 for i in range(n): if s + w[i] <= l: s += w[i] ans += 1 else: break print(ans)