結果
問題 | No.2567 A_1 > A_2 > ... > A_N |
ユーザー | evima |
提出日時 | 2023-12-02 14:56:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 679 bytes |
コンパイル時間 | 465 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 20,608 KB |
最終ジャッジ日時 | 2024-09-26 17:43:10 |
合計ジャッジ時間 | 3,933 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
def solve_one(): N, X = map(int, input().split()) mi = N * (N + 1) // 2 if X < mi: print(-1) return ans = [] s = 0 prev_hi = X for i in range(N): rest = N - i lo, hi = N - i - 1, prev_hi - 1 while lo + 1 < hi: mi = (lo + hi) // 2 t = (mi + (mi - rest + 1)) * rest // 2 if s + t >= X: hi = mi else: lo = mi ans.append(hi) prev_hi = hi s += hi print(*ans) if __name__ == "__main__": T = int(input()) for i in range(1, T + 1): print(f"Case #{i}: ", end="") solve_one()