結果

問題 No.2424 Josouzai
ユーザー noriocnorioc
提出日時 2023-08-18 22:34:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-11-28 08:34:47
合計ジャッジ時間 4,469 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 39 ms
51,328 KB
testcase_04 AC 66 ms
74,368 KB
testcase_05 AC 132 ms
101,888 KB
testcase_06 AC 124 ms
108,544 KB
testcase_07 AC 125 ms
108,648 KB
testcase_08 AC 134 ms
101,632 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 55 ms
72,064 KB
testcase_11 AC 82 ms
99,456 KB
testcase_12 AC 71 ms
89,600 KB
testcase_13 AC 65 ms
73,472 KB
testcase_14 AC 85 ms
86,656 KB
testcase_15 AC 47 ms
61,696 KB
testcase_16 AC 112 ms
104,064 KB
testcase_17 AC 58 ms
68,992 KB
testcase_18 AC 63 ms
71,936 KB
testcase_19 AC 80 ms
82,560 KB
testcase_20 AC 113 ms
104,320 KB
testcase_21 AC 98 ms
93,824 KB
testcase_22 AC 65 ms
73,600 KB
testcase_23 AC 71 ms
77,312 KB
testcase_24 AC 54 ms
66,176 KB
testcase_25 AC 120 ms
108,664 KB
testcase_26 AC 95 ms
93,696 KB
testcase_27 AC 124 ms
108,824 KB
testcase_28 AC 110 ms
99,840 KB
testcase_29 AC 102 ms
98,048 KB
testcase_30 AC 56 ms
66,560 KB
testcase_31 AC 76 ms
80,384 KB
testcase_32 AC 124 ms
109,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

k = K
for i, a in enumerate(sorted(A)):
    if k < a:
        print(i, k)
        break
    k -= a
else:
    print(N, k)
0