結果
| 問題 | No.156 キャンディー・ボックス |
| コンテスト | |
| ユーザー |
n_knuu
|
| 提出日時 | 2015-05-04 01:18:01 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 91 ms / 2,000 ms |
| + 332µs | |
| コード長 | 179 bytes |
| 記録 | |
| コンパイル時間 | 281 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 15,868 KB |
| 最終ジャッジ日時 | 2026-08-07 16:50:59 |
| 合計ジャッジ時間 | 5,141 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 30 |
ソースコード
N, M = map(int, input().split())
C = sorted(list(map(int, input().split())))
s = 0
for cnt, c in enumerate(C):
s += c
if M < s:
print(cnt)
exit(0)
print(N)
n_knuu