結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 27 ms
10,368 KB
testcase_02 AC 28 ms
10,368 KB
testcase_03 AC 27 ms
10,368 KB
testcase_04 AC 62 ms
16,964 KB
testcase_05 AC 146 ms
32,632 KB
testcase_06 AC 143 ms
32,096 KB
testcase_07 AC 142 ms
31,968 KB
testcase_08 AC 144 ms
32,376 KB
testcase_09 AC 28 ms
10,368 KB
testcase_10 AC 46 ms
16,116 KB
testcase_11 AC 87 ms
27,256 KB
testcase_12 AC 71 ms
23,068 KB
testcase_13 AC 59 ms
17,308 KB
testcase_14 AC 91 ms
22,312 KB
testcase_15 AC 36 ms
12,160 KB
testcase_16 AC 130 ms
29,540 KB
testcase_17 AC 52 ms
15,336 KB
testcase_18 AC 58 ms
16,300 KB
testcase_19 AC 80 ms
20,688 KB
testcase_20 AC 127 ms
30,132 KB
testcase_21 AC 101 ms
25,540 KB
testcase_22 AC 60 ms
17,120 KB
testcase_23 AC 67 ms
18,440 KB
testcase_24 AC 45 ms
13,948 KB
testcase_25 AC 139 ms
31,240 KB
testcase_26 AC 104 ms
25,204 KB
testcase_27 AC 140 ms
31,704 KB
testcase_28 AC 120 ms
28,908 KB
testcase_29 AC 109 ms
26,904 KB
testcase_30 AC 47 ms
14,260 KB
testcase_31 AC 76 ms
19,892 KB
testcase_32 AC 138 ms
31,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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