結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー くきみかんくきみかん
提出日時 2023-12-02 15:06:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 322 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 821,120 KB
最終ジャッジ日時 2024-09-26 18:03:26
合計ジャッジ時間 3,576 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 MLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
t = int(input())
for _ in range(t):
    n,x = map(int, input().split())
    c = list(itertools.combinations(range(1,x-2), n))
    if len(c) == 0:
        print(-1)
    else:
        for i in c:
            if sum(i) == x:
                print(*i)
                break
        else:
            print(-1)
0