結果

問題 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  
実行時間 145 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,528 KB
最終ジャッジ日時 2024-05-06 03:04:45
合計ジャッジ時間 4,518 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 60 ms
17,148 KB
testcase_05 AC 145 ms
32,396 KB
testcase_06 AC 142 ms
32,244 KB
testcase_07 AC 141 ms
32,248 KB
testcase_08 AC 145 ms
32,528 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 48 ms
16,408 KB
testcase_11 AC 85 ms
27,460 KB
testcase_12 AC 71 ms
22,968 KB
testcase_13 AC 62 ms
17,204 KB
testcase_14 AC 89 ms
22,464 KB
testcase_15 AC 37 ms
12,288 KB
testcase_16 AC 129 ms
29,560 KB
testcase_17 AC 52 ms
15,484 KB
testcase_18 AC 58 ms
16,452 KB
testcase_19 AC 80 ms
20,672 KB
testcase_20 AC 132 ms
30,272 KB
testcase_21 AC 103 ms
25,428 KB
testcase_22 AC 60 ms
17,080 KB
testcase_23 AC 67 ms
18,584 KB
testcase_24 AC 44 ms
14,176 KB
testcase_25 AC 136 ms
31,376 KB
testcase_26 AC 105 ms
25,352 KB
testcase_27 AC 139 ms
31,860 KB
testcase_28 AC 120 ms
29,044 KB
testcase_29 AC 113 ms
27,036 KB
testcase_30 AC 47 ms
14,356 KB
testcase_31 AC 76 ms
20,044 KB
testcase_32 AC 135 ms
31,616 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