結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー ああいいああいい
提出日時 2021-12-25 11:21:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,860 KB
最終ジャッジ日時 2024-09-21 13:19:08
合計ジャッジ時間 4,640 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 162 ms
16,920 KB
testcase_03 AC 47 ms
11,648 KB
testcase_04 AC 166 ms
17,468 KB
testcase_05 AC 41 ms
11,264 KB
testcase_06 AC 187 ms
18,768 KB
testcase_07 AC 124 ms
14,948 KB
testcase_08 AC 214 ms
19,632 KB
testcase_09 AC 125 ms
15,088 KB
testcase_10 AC 151 ms
16,300 KB
testcase_11 AC 205 ms
19,564 KB
testcase_12 AC 129 ms
15,588 KB
testcase_13 AC 129 ms
15,444 KB
testcase_14 AC 202 ms
18,576 KB
testcase_15 AC 164 ms
16,932 KB
testcase_16 AC 91 ms
13,440 KB
testcase_17 AC 35 ms
11,136 KB
testcase_18 AC 88 ms
13,552 KB
testcase_19 AC 117 ms
14,880 KB
testcase_20 AC 108 ms
14,872 KB
testcase_21 AC 132 ms
15,616 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 205 ms
20,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D = map(int,input().split())
b = list(map(int,input().split()))
b.insert(0,0)
a = [0]
for i in range(1,N):
    a.append(a[-1] + b[i])
print(0,end = " ")
for i in range(1,N):
    e = " "
    if a[i] - a[i-1] < D:
        a[i] = a[i-1] + D
    if i == N-1:e = ""
    print(a[i],end = e)
print()
0