結果
| 問題 | No.5 数字のブロック |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-06-07 04:44:29 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 417 bytes |
| 記録 | |
| コンパイル時間 | 313 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-04-10 18:02:40 |
| 合計ジャッジ時間 | 4,703 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 WA * 10 |
ソースコード
def get_max(my_size, my_list):
sorted_list = sorted(my_list)
i = 0
total = 0
while total <= my_size and i < len(my_list):
total += sorted_list[i]
i += 1
return i-1
def main():
box_size = int(input().strip())
box_num = int(input().strip())
box_list = list(map(int, input().strip().split()))
print(get_max(box_size, box_list))
if __name__ == '__main__':
main()