結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2024-02-01 20:50:50
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 926 bytes
コンパイル時間 3,216 ms
コンパイル使用メモリ 76,124 KB
実行使用メモリ 58,808 KB
最終ジャッジ日時 2024-09-28 10:31:28
合計ジャッジ時間 13,830 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,684 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 1,684 ms
58,608 KB
testcase_07 AC 1,735 ms
58,808 KB
testcase_08 AC 1,652 ms
58,468 KB
testcase_09 AC 1,703 ms
58,688 KB
testcase_10 AC 1,631 ms
58,232 KB
testcase_11 AC 179 ms
44,872 KB
testcase_12 AC 196 ms
46,188 KB
testcase_13 AC 182 ms
44,988 KB
testcase_14 AC 175 ms
45,916 KB
testcase_15 AC 208 ms
46,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

    public static void vectorPrint(Vector lis){
        for (int i=0 ; i<lis.size() ; i++){
            System.out.print(lis.get(i));
            if ( i != lis.size()-1){
                System.out.print(' ');
            }else{
                System.out.print('\n');
            }
        }
    }

    public static void main(String[] args){

        Scanner sc = new Scanner(System.in);

        int TT = sc.nextInt();

        for (int lp=0; lp<TT ; lp++){
            int N = sc.nextInt();
            int X = sc.nextInt();
            
            Vector lis = new Vector();
            for (int i=0; i<N-1 ; i++){
                lis.addElement(i+1);
                X -= i+1;
            }
            if (X >= N){
                lis.addElement(X);
                vectorPrint(lis);
            }else{
                System.out.println("-1");
            }
        }
    }
}
0