結果
問題 | No.5 数字のブロック |
ユーザー |
|
提出日時 | 2019-10-11 13:09:59 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 34 ms / 5,000 ms |
コード長 | 405 bytes |
コンパイル時間 | 99 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2024-11-24 12:45:09 |
合計ジャッジ時間 | 2,109 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
class Problem0005: def solve(this): l = int(input()) n = int(input()) w = list(map(int, input().split())) w.sort() res = 0 cnt = 0 for i in range(0, len(w)): res += w[i] if res > l: break cnt += 1 print(cnt) if __name__ == "__main__": problem = Problem0005() problem.solve()