結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-29 13:56:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 553 bytes
コンパイル時間 3,003 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 61,156 KB
最終ジャッジ日時 2024-05-06 23:10:09
合計ジャッジ時間 24,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,840 KB
testcase_01 AC 99 ms
39,980 KB
testcase_02 AC 1,010 ms
58,364 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 309 ms
47,184 KB
testcase_06 WA -
testcase_07 AC 872 ms
54,336 KB
testcase_08 WA -
testcase_09 AC 866 ms
54,448 KB
testcase_10 AC 1,000 ms
58,732 KB
testcase_11 WA -
testcase_12 AC 915 ms
58,308 KB
testcase_13 WA -
testcase_14 AC 1,348 ms
58,960 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 257 ms
45,428 KB
testcase_18 WA -
testcase_19 AC 815 ms
54,128 KB
testcase_20 AC 800 ms
54,112 KB
testcase_21 AC 886 ms
54,352 KB
testcase_22 AC 110 ms
41,000 KB
testcase_23 AC 108 ms
41,136 KB
testcase_24 AC 1,270 ms
61,156 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] = sc.nextInt();
				if (ai[i] < ai[i - 1] + d) {
					ai[i] = ai[i - 1] + d;
				}else {
					ai[i] += ai[i - 1];
				}

			}
			sc.close();

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

	}
}
0