結果
問題 | No.156 キャンディー・ボックス |
ユーザー | machoniump |
提出日時 | 2021-10-02 15:25:27 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 495 ms / 2,000 ms |
コード長 | 1,073 bytes |
コンパイル時間 | 496 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 44,324 KB |
最終ジャッジ日時 | 2024-07-20 09:52:42 |
合計ジャッジ時間 | 19,376 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 452 ms
44,052 KB |
testcase_01 | AC | 457 ms
44,312 KB |
testcase_02 | AC | 444 ms
44,308 KB |
testcase_03 | AC | 448 ms
44,176 KB |
testcase_04 | AC | 457 ms
44,048 KB |
testcase_05 | AC | 455 ms
44,176 KB |
testcase_06 | AC | 460 ms
44,184 KB |
testcase_07 | AC | 447 ms
43,920 KB |
testcase_08 | AC | 450 ms
44,312 KB |
testcase_09 | AC | 451 ms
44,308 KB |
testcase_10 | AC | 458 ms
44,304 KB |
testcase_11 | AC | 457 ms
44,052 KB |
testcase_12 | AC | 445 ms
44,140 KB |
testcase_13 | AC | 445 ms
44,056 KB |
testcase_14 | AC | 441 ms
44,176 KB |
testcase_15 | AC | 448 ms
44,020 KB |
testcase_16 | AC | 449 ms
44,304 KB |
testcase_17 | AC | 446 ms
44,052 KB |
testcase_18 | AC | 445 ms
44,052 KB |
testcase_19 | AC | 455 ms
44,264 KB |
testcase_20 | AC | 452 ms
44,308 KB |
testcase_21 | AC | 448 ms
44,180 KB |
testcase_22 | AC | 442 ms
44,180 KB |
testcase_23 | AC | 445 ms
44,048 KB |
testcase_24 | AC | 448 ms
44,052 KB |
testcase_25 | AC | 495 ms
44,056 KB |
testcase_26 | AC | 452 ms
44,308 KB |
testcase_27 | AC | 458 ms
44,324 KB |
testcase_28 | AC | 459 ms
44,304 KB |
testcase_29 | AC | 466 ms
44,048 KB |
testcase_30 | AC | 449 ms
44,308 KB |
testcase_31 | AC | 442 ms
44,308 KB |
testcase_32 | AC | 447 ms
44,312 KB |
testcase_33 | AC | 446 ms
44,176 KB |
ソースコード
import sys from collections import deque, defaultdict,Counter from copy import deepcopy from bisect import bisect_left, bisect_right, insort_left, insort_right from heapq import heapify, heappop, heappush from itertools import product, permutations, combinations, combinations_with_replacement,accumulate from functools import reduce from math import gcd, sin, cos, tan, asin, acos, atan, degrees, radians, ceil, floor, log, sqrt, ceil, floor, pi, hypot from string import ascii_lowercase from decimal import Decimal, ROUND_HALF_UP, ROUND_HALF_EVEN import numpy as np sys.setrecursionlimit(1000000) INF = 10**18 MOD = 10**9+7 # MOD = 998244353 yes="Yes" no="No" from random import randint def II():return int(input()) def SI():return str(input()) def MI():return map(int,input().split()) def MS():return map(str,input().split()) def LI():return list(map(int,input().split())) def LS():return list(map(str,input().split())) def SLI():return sorted(list(map(int,input().split()))) n,m=MI() c=LI() c.sort() ans = 0 for i in c: m -= i if m>=0: ans+=1 print(ans)