結果
問題 |
No.5 数字のブロック
|
ユーザー |
![]() |
提出日時 | 2018-07-19 14:57:40 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 156 bytes |
コンパイル時間 | 252 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2024-12-23 17:12:17 |
合計ジャッジ時間 | 2,539 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 WA * 7 RE * 7 |
ソースコード
L = int(input()) N = int(input()) W = [int(i) for i in input().split()] W.sort() LL = 0 ans = 0 while LL < L: LL += W.pop(0) ans += 1 print(ans-1)