結果

問題 No.2424 Josouzai
ユーザー bug maker / ばぐめいかー@Python学習者bug maker / ばぐめいかー@Python学習者
提出日時 2023-08-18 21:16:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 337 bytes
コンパイル時間 767 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,384 KB
最終ジャッジ日時 2024-11-28 05:17:12
合計ジャッジ時間 4,046 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 RE -
testcase_04 AC 59 ms
17,140 KB
testcase_05 AC 140 ms
32,260 KB
testcase_06 AC 139 ms
32,236 KB
testcase_07 AC 132 ms
31,980 KB
testcase_08 AC 131 ms
32,384 KB
testcase_09 AC 27 ms
10,496 KB
testcase_10 AC 43 ms
16,008 KB
testcase_11 AC 78 ms
27,272 KB
testcase_12 AC 64 ms
22,952 KB
testcase_13 AC 56 ms
17,068 KB
testcase_14 AC 79 ms
22,328 KB
testcase_15 AC 33 ms
12,160 KB
testcase_16 AC 118 ms
29,548 KB
testcase_17 AC 47 ms
15,472 KB
testcase_18 AC 51 ms
16,308 KB
testcase_19 AC 73 ms
20,704 KB
testcase_20 AC 118 ms
30,264 KB
testcase_21 AC 95 ms
25,424 KB
testcase_22 AC 54 ms
17,168 KB
testcase_23 AC 61 ms
18,444 KB
testcase_24 AC 40 ms
13,960 KB
testcase_25 AC 126 ms
31,376 KB
testcase_26 AC 99 ms
25,256 KB
testcase_27 AC 133 ms
31,724 KB
testcase_28 AC 113 ms
28,912 KB
testcase_29 AC 103 ms
26,904 KB
testcase_30 AC 43 ms
14,268 KB
testcase_31 AC 73 ms
19,776 KB
testcase_32 AC 128 ms
31,540 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