結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー tentententen
提出日時 2023-12-04 11:22:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 475 ms / 2,000 ms
コード長 2,044 bytes
コンパイル時間 2,944 ms
コンパイル使用メモリ 90,808 KB
実行使用メモリ 53,676 KB
最終ジャッジ日時 2024-09-26 22:53:31
合計ジャッジ時間 8,268 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
37,648 KB
testcase_01 AC 213 ms
50,924 KB
testcase_02 AC 234 ms
50,464 KB
testcase_03 AC 233 ms
53,368 KB
testcase_04 AC 241 ms
52,880 KB
testcase_05 AC 258 ms
53,676 KB
testcase_06 AC 468 ms
50,016 KB
testcase_07 AC 472 ms
49,980 KB
testcase_08 AC 475 ms
50,164 KB
testcase_09 AC 466 ms
50,324 KB
testcase_10 AC 469 ms
50,304 KB
testcase_11 AC 76 ms
37,676 KB
testcase_12 AC 76 ms
38,060 KB
testcase_13 AC 77 ms
37,628 KB
testcase_14 AC 75 ms
37,644 KB
testcase_15 AC 83 ms
38,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int q = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (q-- > 0) {
            int n = sc.nextInt();
            long t = sc.nextLong();
            if (n * (n + 1L) / 2 > t) {
                sb.append("-1\n");
                continue;
            }
            long[] ans = new long[n];
            for (int i = 0; i < n - 1; i++) {
                ans[i] = i + 1;
            }
            ans[n - 1] = t - n * (n - 1L) / 2; 
            sb.append(String.join(" ", Arrays.stream(ans).mapToObj(String::valueOf).toArray(String[]::new))).append("\n");
        }
        System.out.print(sb);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0