結果

問題 No.2424 Josouzai
ユーザー bug maker / ばぐめいかー@Python学習者bug maker / ばぐめいかー@Python学習者
提出日時 2023-08-18 21:20:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,400 KB
最終ジャッジ日時 2024-11-28 05:24:52
合計ジャッジ時間 4,233 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 65 ms
17,152 KB
testcase_05 AC 138 ms
32,400 KB
testcase_06 AC 134 ms
32,252 KB
testcase_07 AC 140 ms
32,248 KB
testcase_08 AC 147 ms
32,396 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 47 ms
16,148 KB
testcase_11 AC 87 ms
27,284 KB
testcase_12 AC 69 ms
23,092 KB
testcase_13 AC 56 ms
17,200 KB
testcase_14 AC 83 ms
22,464 KB
testcase_15 AC 34 ms
12,160 KB
testcase_16 AC 122 ms
29,568 KB
testcase_17 AC 48 ms
15,484 KB
testcase_18 AC 53 ms
16,320 KB
testcase_19 AC 73 ms
20,712 KB
testcase_20 AC 124 ms
30,260 KB
testcase_21 AC 97 ms
25,552 KB
testcase_22 AC 56 ms
17,076 KB
testcase_23 AC 72 ms
18,460 KB
testcase_24 AC 41 ms
14,052 KB
testcase_25 AC 124 ms
31,252 KB
testcase_26 AC 99 ms
25,220 KB
testcase_27 AC 134 ms
31,732 KB
testcase_28 AC 117 ms
28,792 KB
testcase_29 AC 105 ms
26,904 KB
testcase_30 AC 43 ms
14,232 KB
testcase_31 AC 71 ms
20,044 KB
testcase_32 AC 132 ms
31,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]

def main():
    N, K = map(int, input().split())

    A = list(map(int, input().split()))

    i = 0
    A.sort()
    
    while K>=0 and i < N:
        if K-A[i]>=0:
            K -= A[i]
        else:
            break
        i+=1

    print(i, K)    

if __name__ == '__main__':
    main()
0