結果
問題 | No.2806 Cornflake Man |
ユーザー | anonymously |
提出日時 | 2024-07-12 22:41:21 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 469 bytes |
コンパイル時間 | 237 ms |
コンパイル使用メモリ | 82,124 KB |
実行使用メモリ | 96,768 KB |
最終ジャッジ日時 | 2024-07-12 22:41:30 |
合計ジャッジ時間 | 4,960 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 87 ms
86,784 KB |
testcase_01 | AC | 160 ms
90,368 KB |
testcase_02 | AC | 51 ms
63,744 KB |
testcase_03 | AC | 142 ms
92,108 KB |
testcase_04 | AC | 55 ms
63,232 KB |
testcase_05 | AC | 69 ms
68,096 KB |
testcase_06 | AC | 66 ms
72,192 KB |
testcase_07 | AC | 146 ms
96,768 KB |
testcase_08 | AC | 65 ms
71,296 KB |
testcase_09 | AC | 107 ms
79,232 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
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)