結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー dangodango
提出日時 2023-06-24 18:39:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 90,368 KB
最終ジャッジ日時 2024-07-01 21:39:05
合計ジャッジ時間 4,493 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 45 ms
51,456 KB
testcase_02 AC 90 ms
84,480 KB
testcase_03 AC 70 ms
68,480 KB
testcase_04 AC 100 ms
86,400 KB
testcase_05 AC 63 ms
65,024 KB
testcase_06 AC 98 ms
88,192 KB
testcase_07 AC 83 ms
81,408 KB
testcase_08 AC 95 ms
89,728 KB
testcase_09 AC 84 ms
81,792 KB
testcase_10 AC 84 ms
83,840 KB
testcase_11 AC 100 ms
89,728 KB
testcase_12 AC 82 ms
82,304 KB
testcase_13 AC 82 ms
82,432 KB
testcase_14 AC 91 ms
87,808 KB
testcase_15 AC 85 ms
84,608 KB
testcase_16 AC 82 ms
78,336 KB
testcase_17 AC 60 ms
63,488 KB
testcase_18 AC 86 ms
79,232 KB
testcase_19 AC 80 ms
80,768 KB
testcase_20 AC 74 ms
78,464 KB
testcase_21 AC 81 ms
82,432 KB
testcase_22 AC 40 ms
51,840 KB
testcase_23 AC 40 ms
51,456 KB
testcase_24 AC 95 ms
90,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())
b = list(map(int, input().split()))
a = [0] * n
for i in range(1, n):
    a[i] = a[i - 1] + b[i - 1]
for i in range(n):
    if i != 0:
        a[i] = max(a[i], a[i - 1] + d)
    print(a[i], end=' ' if i != n - 1 else '\n')
0