結果

問題 No.2092 Conjugation
ユーザー ks2mks2m
提出日時 2022-10-07 21:45:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 3,707 ms
コンパイル使用メモリ 74,776 KB
実行使用メモリ 62,268 KB
最終ジャッジ日時 2024-06-12 06:49:47
合計ジャッジ時間 7,601 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,164 KB
testcase_01 AC 51 ms
49,924 KB
testcase_02 AC 48 ms
50,328 KB
testcase_03 AC 49 ms
50,096 KB
testcase_04 AC 48 ms
50,484 KB
testcase_05 AC 48 ms
50,352 KB
testcase_06 AC 49 ms
50,296 KB
testcase_07 AC 90 ms
51,444 KB
testcase_08 AC 209 ms
58,432 KB
testcase_09 AC 176 ms
55,112 KB
testcase_10 AC 173 ms
55,704 KB
testcase_11 AC 179 ms
55,972 KB
testcase_12 AC 146 ms
55,120 KB
testcase_13 AC 135 ms
54,236 KB
testcase_14 AC 129 ms
54,100 KB
testcase_15 AC 160 ms
54,936 KB
testcase_16 AC 237 ms
60,604 KB
testcase_17 AC 242 ms
62,244 KB
testcase_18 AC 241 ms
62,268 KB
testcase_19 AC 150 ms
57,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		int[] b = new int[a[0]];
		int idx = 0;
		for (int i = n - 1; i >= 0; i--) {
			while (idx < a[i]) {
				b[idx] = i + 1;
				idx++;
			}
		}

		StringBuilder sb = new StringBuilder();
		for (int i : b) {
			sb.append(i).append(' ');
		}
		sb.deleteCharAt(sb.length() - 1);
		System.out.println(sb.toString());
	}
}
0