結果

問題 No.2424 Josouzai
ユーザー SchneeSchnee
提出日時 2024-04-28 03:54:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 104 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,632 KB
最終ジャッジ日時 2024-11-16 13:20:48
合計ジャッジ時間 5,338 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 27 ms
10,368 KB
testcase_02 AC 25 ms
10,368 KB
testcase_03 WA -
testcase_04 AC 59 ms
17,092 KB
testcase_05 AC 133 ms
32,500 KB
testcase_06 AC 132 ms
32,228 KB
testcase_07 AC 135 ms
32,100 KB
testcase_08 AC 133 ms
32,632 KB
testcase_09 AC 25 ms
10,496 KB
testcase_10 AC 43 ms
16,248 KB
testcase_11 AC 78 ms
27,252 KB
testcase_12 AC 69 ms
23,064 KB
testcase_13 AC 58 ms
17,052 KB
testcase_14 AC 85 ms
22,260 KB
testcase_15 AC 34 ms
12,416 KB
testcase_16 AC 118 ms
29,664 KB
testcase_17 AC 50 ms
15,332 KB
testcase_18 AC 53 ms
16,428 KB
testcase_19 AC 74 ms
20,564 KB
testcase_20 AC 123 ms
29,676 KB
testcase_21 AC 94 ms
25,664 KB
testcase_22 AC 55 ms
16,932 KB
testcase_23 AC 63 ms
18,564 KB
testcase_24 AC 42 ms
14,032 KB
testcase_25 AC 126 ms
31,352 KB
testcase_26 AC 96 ms
25,204 KB
testcase_27 AC 131 ms
31,708 KB
testcase_28 AC 114 ms
28,768 KB
testcase_29 AC 106 ms
27,012 KB
testcase_30 AC 42 ms
14,456 KB
testcase_31 AC 69 ms
20,024 KB
testcase_32 AC 128 ms
31,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a,i=sorted(map(int,input().split())),0
while k>a[i]:k-=a[i];i+=1
print(i,k)
0