結果

問題 No.2424 Josouzai
ユーザー SchneeSchnee
提出日時 2024-04-28 04:07:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,512 KB
最終ジャッジ日時 2024-11-16 13:50:15
合計ジャッジ時間 4,932 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,368 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 62 ms
16,972 KB
testcase_05 AC 150 ms
32,384 KB
testcase_06 AC 152 ms
32,228 KB
testcase_07 AC 154 ms
32,232 KB
testcase_08 AC 156 ms
32,512 KB
testcase_09 AC 28 ms
10,496 KB
testcase_10 AC 49 ms
16,124 KB
testcase_11 AC 89 ms
27,384 KB
testcase_12 AC 73 ms
22,940 KB
testcase_13 AC 62 ms
17,192 KB
testcase_14 AC 93 ms
22,448 KB
testcase_15 AC 38 ms
12,416 KB
testcase_16 AC 137 ms
29,692 KB
testcase_17 AC 55 ms
15,340 KB
testcase_18 AC 60 ms
16,308 KB
testcase_19 AC 84 ms
20,576 KB
testcase_20 AC 140 ms
30,384 KB
testcase_21 AC 109 ms
25,540 KB
testcase_22 AC 62 ms
17,152 KB
testcase_23 AC 71 ms
18,700 KB
testcase_24 AC 47 ms
14,072 KB
testcase_25 AC 146 ms
31,236 KB
testcase_26 AC 110 ms
25,336 KB
testcase_27 AC 149 ms
31,844 KB
testcase_28 AC 128 ms
28,908 KB
testcase_29 AC 119 ms
26,896 KB
testcase_30 AC 49 ms
14,388 KB
testcase_31 AC 80 ms
20,032 KB
testcase_32 AC 144 ms
31,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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