結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー tanon710tanon710
提出日時 2020-07-08 00:03:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 1,400 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 99,208 KB
最終ジャッジ日時 2024-10-01 21:57:32
合計ジャッジ時間 4,158 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 80 ms
90,112 KB
testcase_03 AC 55 ms
67,328 KB
testcase_04 AC 84 ms
93,184 KB
testcase_05 AC 53 ms
65,280 KB
testcase_06 AC 89 ms
95,744 KB
testcase_07 AC 73 ms
85,120 KB
testcase_08 AC 92 ms
98,304 KB
testcase_09 AC 73 ms
85,376 KB
testcase_10 AC 77 ms
88,960 KB
testcase_11 AC 93 ms
99,072 KB
testcase_12 AC 76 ms
86,144 KB
testcase_13 AC 75 ms
86,016 KB
testcase_14 AC 89 ms
95,872 KB
testcase_15 AC 82 ms
90,624 KB
testcase_16 AC 63 ms
77,568 KB
testcase_17 AC 53 ms
63,232 KB
testcase_18 AC 66 ms
79,308 KB
testcase_19 AC 72 ms
83,840 KB
testcase_20 AC 70 ms
82,560 KB
testcase_21 AC 76 ms
87,040 KB
testcase_22 AC 39 ms
51,200 KB
testcase_23 AC 37 ms
51,840 KB
testcase_24 AC 93 ms
99,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
input=sys.stdin.readline

n,d=map(int,input().split())
arr=list(map(int,input().split()))
ans=[0]
for i in range(n-1):
    ans.append(ans[-1]+arr[i])
for i in range(1,n):
    if ans[i]-ans[i-1]<d:
        ans[i]=ans[i-1]+d
print(*ans)
0