結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー viral8viral8
提出日時 2023-12-02 14:43:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 662 bytes
コンパイル時間 2,700 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 45,772 KB
最終ジャッジ日時 2024-09-26 17:13:35
合計ジャッジ時間 6,071 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,748 KB
testcase_01 AC 172 ms
43,936 KB
testcase_02 AC 179 ms
43,980 KB
testcase_03 AC 173 ms
45,044 KB
testcase_04 AC 183 ms
45,280 KB
testcase_05 AC 199 ms
45,076 KB
testcase_06 AC 353 ms
45,352 KB
testcase_07 AC 346 ms
45,420 KB
testcase_08 AC 380 ms
45,380 KB
testcase_09 AC 371 ms
45,772 KB
testcase_10 AC 347 ms
45,508 KB
testcase_11 AC 54 ms
37,072 KB
testcase_12 AC 58 ms
36,964 KB
testcase_13 AC 53 ms
37,140 KB
testcase_14 AC 52 ms
37,096 KB
testcase_15 AC 74 ms
37,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
class Main{
	private static final BufferedReader br =
		new BufferedReader(new InputStreamReader(System.in));
	private static final PrintWriter out =
		new PrintWriter(System.out);
	public static void main(String[] args)throws IOException{

		int T = Integer.parseInt(br.readLine());
		while(T-->0){
			String[] str = br.readLine().split(" ");
			int N = Integer.parseInt(str[0]);
			long X = Long.parseLong(str[1]);
			if(X<(long)N*(N+1)/2)
				out.println(-1);
			else{
				for(int i=1;i<N;i++){
					out.print(i);
					out.print(" ");
				}
				out.println(X-(long)N*(N-1)/2);
			}
		}

		br.close();
		out.close();
	}
}
0