結果
問題 |
No.5 数字のブロック
|
ユーザー |
|
提出日時 | 2018-06-28 03:07:43 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 232 bytes |
コンパイル時間 | 87 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2024-06-30 23:18:08 |
合計ジャッジ時間 | 2,095 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 WA * 24 |
ソースコード
width = int(input()) total = int(input()) blocks = sorted(list(map(int, input().split(" ")))) tmp = 0 for i in range(total): tmp += blocks[i] if tmp > width: break print(i if i + 1 == total - 1 else i + 1)