結果

問題 No.2424 Josouzai
ユーザー 310icecrystal310icecrystal
提出日時 2023-08-18 21:02:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-11-28 04:38:51
合計ジャッジ時間 4,133 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,328 KB
testcase_01 AC 35 ms
51,328 KB
testcase_02 AC 35 ms
51,328 KB
testcase_03 AC 34 ms
51,840 KB
testcase_04 AC 66 ms
73,344 KB
testcase_05 AC 127 ms
101,632 KB
testcase_06 AC 126 ms
107,136 KB
testcase_07 AC 122 ms
107,008 KB
testcase_08 AC 132 ms
101,760 KB
testcase_09 AC 39 ms
51,584 KB
testcase_10 AC 54 ms
71,168 KB
testcase_11 AC 80 ms
97,792 KB
testcase_12 AC 71 ms
88,832 KB
testcase_13 AC 66 ms
72,832 KB
testcase_14 AC 84 ms
85,120 KB
testcase_15 AC 48 ms
61,440 KB
testcase_16 AC 112 ms
102,528 KB
testcase_17 AC 59 ms
69,120 KB
testcase_18 AC 62 ms
71,424 KB
testcase_19 AC 77 ms
82,048 KB
testcase_20 AC 110 ms
103,040 KB
testcase_21 AC 92 ms
92,800 KB
testcase_22 AC 63 ms
73,140 KB
testcase_23 AC 67 ms
76,928 KB
testcase_24 AC 51 ms
66,048 KB
testcase_25 AC 119 ms
107,264 KB
testcase_26 AC 94 ms
92,928 KB
testcase_27 AC 125 ms
107,520 KB
testcase_28 AC 107 ms
98,816 KB
testcase_29 AC 100 ms
96,640 KB
testcase_30 AC 52 ms
66,304 KB
testcase_31 AC 71 ms
79,872 KB
testcase_32 AC 116 ms
107,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))

A.sort()
for i in range(N):
    a = A[i]
    if K < a:
        print(i,K)
        exit()
    else:
        K -= a
print(N,K)
0