結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー tentententen
提出日時 2020-12-07 09:54:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 562 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 2,571 ms
コンパイル使用メモリ 74,560 KB
実行使用メモリ 61,568 KB
最終ジャッジ日時 2024-09-17 13:39:03
合計ジャッジ時間 13,888 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,148 KB
testcase_01 AC 117 ms
54,032 KB
testcase_02 AC 492 ms
61,028 KB
testcase_03 AC 236 ms
58,000 KB
testcase_04 AC 471 ms
61,256 KB
testcase_05 AC 206 ms
57,460 KB
testcase_06 AC 519 ms
61,280 KB
testcase_07 AC 432 ms
59,232 KB
testcase_08 AC 484 ms
61,568 KB
testcase_09 AC 438 ms
59,172 KB
testcase_10 AC 466 ms
61,512 KB
testcase_11 AC 544 ms
61,568 KB
testcase_12 AC 447 ms
59,212 KB
testcase_13 AC 440 ms
59,448 KB
testcase_14 AC 528 ms
61,348 KB
testcase_15 AC 491 ms
61,500 KB
testcase_16 AC 386 ms
59,340 KB
testcase_17 AC 184 ms
57,112 KB
testcase_18 AC 376 ms
59,188 KB
testcase_19 AC 420 ms
58,976 KB
testcase_20 AC 416 ms
58,912 KB
testcase_21 AC 461 ms
59,276 KB
testcase_22 AC 115 ms
54,024 KB
testcase_23 AC 113 ms
53,704 KB
testcase_24 AC 562 ms
61,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int d = sc.nextInt();
        int[] arr = new int[n];
        int[] ans = new int[n];
        StringBuilder sb = new StringBuilder();
        sb.append(0);
        for (int i = 1; i < n; i++) {
            arr[i] = sc.nextInt() + arr[i - 1];
            ans[i] = Math.max(arr[i], ans[i - 1] + d);
            sb.append(" ").append(ans[i]);
        }
        System.out.println(sb);
    }
}
0