結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 35 ms
51,584 KB
testcase_03 RE -
testcase_04 AC 62 ms
73,196 KB
testcase_05 AC 126 ms
101,928 KB
testcase_06 AC 116 ms
106,880 KB
testcase_07 AC 119 ms
106,880 KB
testcase_08 AC 124 ms
102,128 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 50 ms
71,424 KB
testcase_11 AC 72 ms
97,536 KB
testcase_12 AC 63 ms
88,576 KB
testcase_13 AC 60 ms
72,960 KB
testcase_14 AC 77 ms
85,120 KB
testcase_15 AC 42 ms
61,824 KB
testcase_16 AC 104 ms
102,784 KB
testcase_17 AC 54 ms
69,120 KB
testcase_18 AC 57 ms
71,296 KB
testcase_19 AC 75 ms
81,664 KB
testcase_20 AC 106 ms
103,040 KB
testcase_21 AC 89 ms
92,672 KB
testcase_22 AC 59 ms
72,832 KB
testcase_23 AC 63 ms
76,544 KB
testcase_24 AC 47 ms
66,428 KB
testcase_25 AC 112 ms
107,368 KB
testcase_26 AC 91 ms
93,184 KB
testcase_27 AC 115 ms
107,392 KB
testcase_28 AC 100 ms
98,304 KB
testcase_29 AC 97 ms
96,640 KB
testcase_30 AC 49 ms
66,560 KB
testcase_31 AC 67 ms
79,744 KB
testcase_32 AC 113 ms
107,344 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