結果

問題 No.2424 Josouzai
ユーザー bug maker / ばぐめいかー@Python学習者bug maker / ばぐめいかー@Python学習者
提出日時 2023-08-18 21:17:17
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 337 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-11-28 05:20:32
合計ジャッジ時間 4,102 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 34 ms
51,840 KB
testcase_03 RE -
testcase_04 AC 61 ms
73,216 KB
testcase_05 AC 124 ms
102,016 KB
testcase_06 AC 117 ms
107,392 KB
testcase_07 AC 118 ms
107,136 KB
testcase_08 AC 123 ms
101,632 KB
testcase_09 AC 35 ms
51,712 KB
testcase_10 AC 54 ms
71,552 KB
testcase_11 AC 77 ms
98,048 KB
testcase_12 AC 72 ms
88,536 KB
testcase_13 AC 62 ms
72,960 KB
testcase_14 AC 80 ms
85,504 KB
testcase_15 AC 45 ms
61,824 KB
testcase_16 AC 105 ms
102,576 KB
testcase_17 AC 56 ms
69,120 KB
testcase_18 AC 59 ms
71,680 KB
testcase_19 AC 75 ms
81,920 KB
testcase_20 AC 110 ms
102,868 KB
testcase_21 AC 92 ms
92,928 KB
testcase_22 AC 63 ms
72,576 KB
testcase_23 AC 70 ms
76,800 KB
testcase_24 AC 51 ms
66,048 KB
testcase_25 AC 113 ms
107,116 KB
testcase_26 AC 94 ms
93,312 KB
testcase_27 AC 122 ms
107,136 KB
testcase_28 AC 104 ms
98,944 KB
testcase_29 AC 101 ms
96,580 KB
testcase_30 AC 53 ms
66,432 KB
testcase_31 AC 72 ms
80,000 KB
testcase_32 AC 117 ms
106,880 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:
        if K-A[i]>=0:
            K -= A[i]
        else:
            break
        i+=1

    print(i, K)    

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