結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-29 14:07:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,574 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 4,582 ms
コンパイル使用メモリ 84,208 KB
実行使用メモリ 59,244 KB
最終ジャッジ日時 2024-05-06 23:10:54
合計ジャッジ時間 27,484 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,568 KB
testcase_01 AC 137 ms
41,292 KB
testcase_02 AC 1,208 ms
58,736 KB
testcase_03 AC 417 ms
48,000 KB
testcase_04 AC 1,308 ms
58,808 KB
testcase_05 AC 368 ms
47,460 KB
testcase_06 AC 1,431 ms
59,244 KB
testcase_07 AC 898 ms
54,556 KB
testcase_08 AC 1,507 ms
58,816 KB
testcase_09 AC 959 ms
54,684 KB
testcase_10 AC 1,217 ms
58,988 KB
testcase_11 AC 1,574 ms
59,044 KB
testcase_12 AC 948 ms
54,252 KB
testcase_13 AC 981 ms
54,640 KB
testcase_14 AC 1,416 ms
59,188 KB
testcase_15 AC 1,221 ms
58,872 KB
testcase_16 AC 782 ms
53,688 KB
testcase_17 AC 295 ms
44,928 KB
testcase_18 AC 797 ms
53,448 KB
testcase_19 AC 924 ms
54,288 KB
testcase_20 AC 859 ms
53,240 KB
testcase_21 AC 1,072 ms
58,820 KB
testcase_22 AC 123 ms
40,156 KB
testcase_23 AC 133 ms
41,244 KB
testcase_24 AC 1,485 ms
58,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class HelloWorld {
		public static void main (String[] args) {
			Scanner sc = new Scanner(System.in);
			int n = sc.nextInt();
			int d = sc.nextInt();
			int[] ai = new int[n];
			ai[0] = 0;
			for (int i = 1;i < n; i ++) {
				ai[i] = ai[i - 1] + sc.nextInt();

			}
			sc.close();

			for (int i = 0; i < n; i ++) {
				if (i > 0 && ai[i] < ai[i - 1] + d) {
					ai[i] = ai[i - 1] + d;
				}
				System.out.print(ai[i]);
				if (i == n - 1) {
					break;
				}
				System.out.print(" ");
			}

	}
}
0