結果
問題 | No.5 数字のブロック |
ユーザー | shokayamori |
提出日時 | 2020-06-17 00:57:59 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 5,000 ms |
コード長 | 281 bytes |
コンパイル時間 | 232 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,776 KB |
最終ジャッジ日時 | 2024-07-03 12:02:45 |
合計ジャッジ時間 | 1,986 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
L = int(input()) N = int(input()) Ws = list(map(int, input().split(' '))) Ws.sort() for i in range(len(Ws)): s = sum(Ws[:i+1]) if s >= L: if s == L: print(i+1) break else: print(i) break else: print(i+1)