結果
問題 | No.5 数字のブロック |
ユーザー | vally |
提出日時 | 2023-08-28 12:17:22 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 44 ms / 5,000 ms |
コード長 | 202 bytes |
コンパイル時間 | 367 ms |
コンパイル使用メモリ | 82,476 KB |
実行使用メモリ | 60,664 KB |
最終ジャッジ日時 | 2024-12-29 11:01:09 |
合計ジャッジ時間 | 2,853 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
l = int(input()) n = int(input()) w = [int(i) for i in input().split()] w.sort() answer = 0 sum0 = 0 for i in w: sum0 += i if sum0 <= l: answer += 1 else: break print(answer)