結果
問題 | No.5 数字のブロック |
ユーザー | kaoru murata |
提出日時 | 2021-08-26 17:36:41 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 32 ms / 5,000 ms |
コード長 | 264 bytes |
コンパイル時間 | 479 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2024-11-18 11:14:00 |
合計ジャッジ時間 | 2,310 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
def read_int(): return int(input()) def read_int_list(): return list(map(int, input().split())) L = read_int() N = read_int() Ws = read_int_list() cnt = 0 for w in sorted(Ws): if L - w >= 0: cnt += 1 L -= w else: break print(cnt)