結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 24 ms
10,496 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 56 ms
17,104 KB
testcase_05 AC 134 ms
32,508 KB
testcase_06 AC 136 ms
32,232 KB
testcase_07 AC 136 ms
32,232 KB
testcase_08 AC 137 ms
32,636 KB
testcase_09 AC 27 ms
10,496 KB
testcase_10 AC 44 ms
16,252 KB
testcase_11 AC 82 ms
27,384 KB
testcase_12 AC 68 ms
23,072 KB
testcase_13 AC 57 ms
17,192 KB
testcase_14 AC 81 ms
22,452 KB
testcase_15 AC 33 ms
12,288 KB
testcase_16 AC 122 ms
29,676 KB
testcase_17 AC 48 ms
15,468 KB
testcase_18 AC 52 ms
16,436 KB
testcase_19 AC 74 ms
20,700 KB
testcase_20 AC 122 ms
30,124 KB
testcase_21 AC 99 ms
25,540 KB
testcase_22 AC 56 ms
17,024 KB
testcase_23 AC 62 ms
18,544 KB
testcase_24 AC 41 ms
13,948 KB
testcase_25 AC 124 ms
31,240 KB
testcase_26 AC 99 ms
25,340 KB
testcase_27 AC 136 ms
31,840 KB
testcase_28 AC 117 ms
28,904 KB
testcase_29 AC 103 ms
26,896 KB
testcase_30 AC 43 ms
14,260 KB
testcase_31 AC 72 ms
20,028 KB
testcase_32 AC 129 ms
31,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k=int(input().split()[1])
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