結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー K5h1n0K5h1n0
提出日時 2023-12-02 14:55:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 92,288 KB
最終ジャッジ日時 2024-09-26 17:42:30
合計ジャッジ時間 3,259 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 90 ms
87,168 KB
testcase_02 AC 96 ms
89,600 KB
testcase_03 AC 92 ms
89,984 KB
testcase_04 AC 96 ms
88,064 KB
testcase_05 AC 100 ms
92,288 KB
testcase_06 AC 205 ms
85,924 KB
testcase_07 AC 193 ms
85,748 KB
testcase_08 AC 195 ms
85,656 KB
testcase_09 AC 191 ms
86,016 KB
testcase_10 AC 194 ms
86,016 KB
testcase_11 AC 43 ms
52,608 KB
testcase_12 AC 50 ms
59,520 KB
testcase_13 AC 43 ms
52,352 KB
testcase_14 AC 41 ms
52,352 KB
testcase_15 AC 54 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
ans = []
for _ in range(t):
    n,x = map(int,input().split())
    nowlist = []
    if n*(n+1)//2 <= x:
        for i in range(1,n+1):
            if i == n:
                nowlist.append(x)
            else:
                x -= i
                nowlist.append(i)
    else:
        nowlist.append(-1)
    ans.append(nowlist)
for i in ans:
    print(*i)
0