結果
問題 | No.2567 A_1 > A_2 > ... > A_N |
ユーザー | tenten |
提出日時 | 2023-12-04 17:43:22 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 433 ms / 2,000 ms |
コード長 | 2,192 bytes |
コンパイル時間 | 2,567 ms |
コンパイル使用メモリ | 91,788 KB |
実行使用メモリ | 60,344 KB |
最終ジャッジ日時 | 2024-09-26 23:05:17 |
合計ジャッジ時間 | 8,080 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
37,660 KB |
testcase_01 | AC | 243 ms
56,016 KB |
testcase_02 | AC | 292 ms
54,856 KB |
testcase_03 | AC | 275 ms
55,020 KB |
testcase_04 | AC | 308 ms
60,344 KB |
testcase_05 | AC | 268 ms
56,324 KB |
testcase_06 | AC | 410 ms
50,820 KB |
testcase_07 | AC | 433 ms
53,024 KB |
testcase_08 | AC | 428 ms
50,708 KB |
testcase_09 | AC | 419 ms
51,972 KB |
testcase_10 | AC | 414 ms
52,644 KB |
testcase_11 | AC | 64 ms
37,960 KB |
testcase_12 | AC | 63 ms
38,224 KB |
testcase_13 | AC | 57 ms
37,648 KB |
testcase_14 | AC | 45 ms
37,076 KB |
testcase_15 | AC | 60 ms
38,104 KB |
testcase_16 | AC | 70 ms
38,060 KB |
ソースコード
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 total = t - n * (n + 1L) / 2; long div = total / n; long mod = total % n; long[] ans = new long[n]; for (int i = 0; i < n; i++) { ans[i] = n - i + div; if (i < mod) { ans[i]++; } } 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(); } }