結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー loop0919loop0919
提出日時 2023-11-27 23:49:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,573 ms / 2,000 ms
コード長 605 bytes
コンパイル時間 4,646 ms
コンパイル使用メモリ 75,648 KB
実行使用メモリ 70,220 KB
最終ジャッジ日時 2024-09-26 15:16:05
合計ジャッジ時間 19,632 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
53,872 KB
testcase_01 AC 734 ms
64,552 KB
testcase_02 AC 786 ms
64,376 KB
testcase_03 AC 776 ms
64,268 KB
testcase_04 AC 780 ms
64,288 KB
testcase_05 AC 820 ms
64,332 KB
testcase_06 AC 1,515 ms
69,500 KB
testcase_07 AC 1,552 ms
70,220 KB
testcase_08 AC 1,532 ms
70,008 KB
testcase_09 AC 1,573 ms
69,168 KB
testcase_10 AC 1,506 ms
70,200 KB
testcase_11 AC 187 ms
54,144 KB
testcase_12 AC 215 ms
54,788 KB
testcase_13 AC 201 ms
54,168 KB
testcase_14 AC 179 ms
54,392 KB
testcase_15 AC 219 ms
54,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int T = sc.nextInt();
        
        for (int i = 0; i < T; i++) {
            long N = sc.nextLong();
            long X = sc.nextLong();
            solve(N, X);
        }
    }
    
    static void solve(long N, long X) {
        if (X < N * (N+1) / 2) {
            System.out.println(-1);
            return;
        }
        
        for (int i = 1; i <= N-1; i++) System.out.print(i + " ");
        System.out.println(X - (N * (N-1) / 2));
    }
}
0