結果
| 問題 |
No.156 キャンディー・ボックス
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-08-14 08:45:53 |
| 言語 | Python2 (2.7.18) |
| 結果 |
AC
|
| 実行時間 | 11 ms / 2,000 ms |
| コード長 | 299 bytes |
| コンパイル時間 | 385 ms |
| コンパイル使用メモリ | 6,912 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-05 15:53:21 |
| 合計ジャッジ時間 | 1,637 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 30 |
ソースコード
#!/usr/bin/python
# -*- coding: utf-8 -*-
N,sum = map(int, raw_input().split())
arrays = map(int, raw_input().split())
arrays.sort()
ans = 0
for i in arrays:
if sum >= i:
ans += 1
if sum - i <= 0:
print ans
exit()
sum -= i
else:
print ans