結果
問題 | No.2567 A_1 > A_2 > ... > A_N |
ユーザー | kemuniku |
提出日時 | 2023-12-02 16:37:41 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 869 bytes |
コンパイル時間 | 199 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 88,576 KB |
最終ジャッジ日時 | 2024-09-26 20:31:39 |
合計ジャッジ時間 | 2,745 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
51,584 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 43 ms
51,712 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#https://aotamasaki.hatenablog.com/entry/meguru_bisect def is_ok(arg): return arg > N-1+(-(-(T-arg))//(N-1)) def meguru_bisect(ng, ok): ''' 初期値のng,okを受け取り,is_okを満たす最小(最大)のokを返す まずis_okを定義すべし ng ok は とり得る最小の値-1 とり得る最大の値+1 最大最小が逆の場合はよしなにひっくり返す ''' while (abs(ok - ng) > 1): mid = (ok + ng) // 2 if is_ok(mid): ok = mid else: ng = mid return ok T = int(input()) for i in range(T): N,X = map(int,input().split()) T = X-(N-1)*N//2 if T <= N-1: print(-1) else: x = meguru_bisect(-1,T+1) sa = T-x A = [x] for i in range(N-1): A.append(N-1-i+(sa//(N-1))+(i+1 <= sa%(N-1))) print(*A)