結果
問題 | No.2567 A_1 > A_2 > ... > A_N |
ユーザー | sA_3 |
提出日時 | 2023-12-02 16:26:51 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 390 bytes |
コンパイル時間 | 160 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 108,160 KB |
最終ジャッジ日時 | 2024-09-26 20:18:45 |
合計ジャッジ時間 | 4,731 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
64,768 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | OLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
import bisect n = 200001 acc = [1 for _ in range(n)] for j in range(1,n): acc[j] = acc[j-1] + j + 1 T = int(input()) for _ in range(T): N,X = map(int,input().split()) if acc[N-1] > X: print(-1) else: a = bisect.bisect_left(acc,X) ans = [i for i in range(a+1,0,-1)] if acc[a] - X != 0: ans.remove(acc[a] - X) print(*ans)