結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 82 ms
17,264 KB
testcase_05 AC 245 ms
32,516 KB
testcase_06 AC 244 ms
32,276 KB
testcase_07 AC 234 ms
32,360 KB
testcase_08 AC 237 ms
32,772 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 66 ms
16,256 KB
testcase_11 AC 140 ms
27,388 KB
testcase_12 AC 111 ms
23,324 KB
testcase_13 AC 86 ms
17,192 KB
testcase_14 AC 137 ms
22,576 KB
testcase_15 AC 44 ms
12,544 KB
testcase_16 AC 213 ms
29,672 KB
testcase_17 AC 71 ms
15,592 KB
testcase_18 AC 79 ms
16,436 KB
testcase_19 AC 117 ms
20,832 KB
testcase_20 AC 216 ms
30,380 KB
testcase_21 AC 167 ms
25,668 KB
testcase_22 AC 82 ms
17,064 KB
testcase_23 AC 98 ms
18,704 KB
testcase_24 AC 57 ms
14,548 KB
testcase_25 AC 221 ms
31,364 KB
testcase_26 AC 164 ms
25,464 KB
testcase_27 AC 235 ms
31,972 KB
testcase_28 AC 193 ms
29,164 KB
testcase_29 AC 175 ms
27,024 KB
testcase_30 AC 58 ms
14,724 KB
testcase_31 AC 112 ms
20,036 KB
testcase_32 AC 223 ms
31,988 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]:
        print(i-1,k-a[i-1])
        exit()
0