結果

問題 No.2806 Cornflake Man
ユーザー anonymouslyanonymously
提出日時 2024-07-12 22:40:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 469 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 36,992 KB
最終ジャッジ日時 2024-07-12 22:40:19
合計ジャッジ時間 8,779 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
29,572 KB
testcase_01 TLE -
testcase_02 AC 46 ms
13,640 KB
testcase_03 AC 1,908 ms
26,484 KB
testcase_04 AC 43 ms
13,356 KB
testcase_05 AC 227 ms
14,540 KB
testcase_06 AC 73 ms
17,660 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = sorted([int(a) for a in input().split()])
B = [not i for i in range(n)]
C = []
for i in range(1, n):
    if A[i] * (n-1) < m:
        print(-1)
        exit(0)
    if not B[i]:
        k = A[i] * 2
        for j in range(i+1, n):
            if A[j] > k:
                print(-1)
                exit(0)
            if A[j] == k:
                B[j] = True
                k += A[i]
        C.append(A[i])
print(len(C))
print(*C)
0