結果

問題 No.2424 Josouzai
ユーザー ramdosramdos
提出日時 2023-08-15 16:55:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,640 KB
最終ジャッジ日時 2024-05-05 03:46:39
合計ジャッジ時間 4,296 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 65 ms
17,100 KB
testcase_05 AC 157 ms
32,640 KB
testcase_06 AC 157 ms
32,104 KB
testcase_07 AC 177 ms
32,356 KB
testcase_08 AC 152 ms
32,380 KB
testcase_09 AC 26 ms
10,496 KB
testcase_10 AC 48 ms
16,248 KB
testcase_11 AC 94 ms
27,632 KB
testcase_12 AC 76 ms
23,064 KB
testcase_13 AC 60 ms
17,184 KB
testcase_14 AC 89 ms
22,568 KB
testcase_15 AC 35 ms
12,160 KB
testcase_16 AC 134 ms
29,672 KB
testcase_17 AC 53 ms
15,460 KB
testcase_18 AC 60 ms
16,424 KB
testcase_19 AC 89 ms
20,692 KB
testcase_20 AC 143 ms
29,936 KB
testcase_21 AC 109 ms
25,532 KB
testcase_22 AC 61 ms
17,064 KB
testcase_23 AC 70 ms
18,692 KB
testcase_24 AC 44 ms
14,280 KB
testcase_25 AC 144 ms
31,484 KB
testcase_26 AC 111 ms
25,328 KB
testcase_27 AC 151 ms
31,704 KB
testcase_28 AC 130 ms
28,900 KB
testcase_29 AC 125 ms
27,012 KB
testcase_30 AC 46 ms
14,588 KB
testcase_31 AC 80 ms
20,156 KB
testcase_32 AC 150 ms
31,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
x=sorted(list(map(int,input().split())))
ans=0
for c in x :
    if c <= b:
        b-=c
        ans+=1
print(ans,b)
0