結果
問題 | No.5 数字のブロック |
ユーザー | pypypymi |
提出日時 | 2022-02-17 15:09:50 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 5,000 ms |
コード長 | 164 bytes |
コンパイル時間 | 231 ms |
コンパイル使用メモリ | 81,648 KB |
実行使用メモリ | 61,008 KB |
最終ジャッジ日時 | 2024-06-29 07:41:38 |
合計ジャッジ時間 | 2,249 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
l = int(input()) n = int(input()) wn = sorted(map(int,input().split())) count=0 v = 0 for wi in wn: if count+wi>l: break count+=wi v+=1 print(v)