結果

問題 No.2424 Josouzai
ユーザー machoniumpmachoniump
提出日時 2023-09-12 22:19:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 247 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,640 KB
最終ジャッジ日時 2024-06-30 09:49:59
合計ジャッジ時間 5,873 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 83 ms
17,392 KB
testcase_05 AC 238 ms
32,636 KB
testcase_06 AC 242 ms
32,356 KB
testcase_07 AC 239 ms
32,228 KB
testcase_08 AC 238 ms
32,640 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 66 ms
16,380 KB
testcase_11 AC 138 ms
27,380 KB
testcase_12 AC 110 ms
23,140 KB
testcase_13 AC 85 ms
17,312 KB
testcase_14 AC 136 ms
22,444 KB
testcase_15 AC 44 ms
12,544 KB
testcase_16 AC 212 ms
29,604 KB
testcase_17 AC 69 ms
15,592 KB
testcase_18 AC 78 ms
16,556 KB
testcase_19 AC 120 ms
20,824 KB
testcase_20 AC 209 ms
30,388 KB
testcase_21 AC 162 ms
25,548 KB
testcase_22 AC 81 ms
17,160 KB
testcase_23 AC 96 ms
18,572 KB
testcase_24 AC 57 ms
14,716 KB
testcase_25 AC 221 ms
31,368 KB
testcase_26 AC 167 ms
25,340 KB
testcase_27 AC 240 ms
31,964 KB
testcase_28 AC 197 ms
28,912 KB
testcase_29 AC 180 ms
27,160 KB
testcase_30 AC 60 ms
14,648 KB
testcase_31 AC 113 ms
20,156 KB
testcase_32 AC 226 ms
31,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=[0]+sorted(list(map(int,input().split())))
for i in range(n):
    a[i+1]+=a[i]
for i in range(n+1):
    if k<a[i]:
        if i==1:
            print(0,0)
            exit()
        print(i-1,k-a[i-1])
        exit()
0