結果

問題 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
コンパイル時間 270 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,640 KB
最終ジャッジ日時 2024-05-06 02:58:05
合計ジャッジ時間 4,333 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 34 ms
10,496 KB
testcase_03 RE -
testcase_04 AC 59 ms
17,016 KB
testcase_05 AC 142 ms
32,516 KB
testcase_06 AC 142 ms
32,108 KB
testcase_07 AC 141 ms
32,368 KB
testcase_08 AC 147 ms
32,640 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 47 ms
16,140 KB
testcase_11 AC 84 ms
27,400 KB
testcase_12 AC 70 ms
23,084 KB
testcase_13 AC 63 ms
17,188 KB
testcase_14 AC 86 ms
22,580 KB
testcase_15 AC 35 ms
12,288 KB
testcase_16 AC 122 ms
29,804 KB
testcase_17 AC 49 ms
15,340 KB
testcase_18 AC 53 ms
16,436 KB
testcase_19 AC 76 ms
20,700 KB
testcase_20 AC 128 ms
30,140 KB
testcase_21 AC 103 ms
25,644 KB
testcase_22 AC 60 ms
17,164 KB
testcase_23 AC 68 ms
18,448 KB
testcase_24 AC 45 ms
14,088 KB
testcase_25 AC 132 ms
31,372 KB
testcase_26 AC 99 ms
25,348 KB
testcase_27 AC 139 ms
31,716 KB
testcase_28 AC 122 ms
28,912 KB
testcase_29 AC 111 ms
27,000 KB
testcase_30 AC 45 ms
14,272 KB
testcase_31 AC 74 ms
19,904 KB
testcase_32 AC 139 ms
31,544 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