結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー RISE70226821RISE70226821
提出日時 2020-08-04 12:58:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,278 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 2,576 ms
コンパイル使用メモリ 76,840 KB
実行使用メモリ 59,376 KB
最終ジャッジ日時 2024-09-14 13:45:25
合計ジャッジ時間 25,237 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
41,340 KB
testcase_01 AC 147 ms
41,420 KB
testcase_02 AC 1,034 ms
58,440 KB
testcase_03 AC 419 ms
47,664 KB
testcase_04 AC 1,142 ms
58,408 KB
testcase_05 AC 351 ms
47,572 KB
testcase_06 AC 1,200 ms
59,172 KB
testcase_07 AC 771 ms
54,300 KB
testcase_08 AC 1,242 ms
59,164 KB
testcase_09 AC 798 ms
54,408 KB
testcase_10 AC 978 ms
58,460 KB
testcase_11 AC 1,278 ms
59,376 KB
testcase_12 AC 854 ms
53,976 KB
testcase_13 AC 812 ms
53,972 KB
testcase_14 AC 1,228 ms
59,076 KB
testcase_15 AC 1,062 ms
58,464 KB
testcase_16 AC 679 ms
48,568 KB
testcase_17 AC 289 ms
44,624 KB
testcase_18 AC 673 ms
50,052 KB
testcase_19 AC 821 ms
54,416 KB
testcase_20 AC 742 ms
51,508 KB
testcase_21 AC 857 ms
58,320 KB
testcase_22 AC 146 ms
41,172 KB
testcase_23 AC 145 ms
41,344 KB
testcase_24 AC 1,227 ms
58,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		// 入力
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int D = sc.nextInt();
		int[] pos = new int[N];
		pos[0] = 0;
		for(int i = 1; i < N; i++){
			int dist = sc.nextInt();
			pos[i] = pos[i-1] + dist;
		}
		
		// 再整列
		for(int i = 1; i < N; i++){
			if(pos[i] - pos[i-1] < D){
				pos[i] = pos[i-1] + D;
			}
		}
		
		// 出力
		System.out.print(pos[0]);
		for(int i = 1; i < N; i++){
			System.out.print(" " + pos[i]);
		}
		System.out.println("");
	}
}
0