結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー kikagekikage
提出日時 2021-08-16 18:29:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,852 KB
最終ジャッジ日時 2024-10-09 15:50:54
合計ジャッジ時間 4,699 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 162 ms
16,552 KB
testcase_03 AC 48 ms
11,520 KB
testcase_04 AC 183 ms
17,464 KB
testcase_05 AC 41 ms
11,264 KB
testcase_06 AC 221 ms
18,884 KB
testcase_07 AC 126 ms
14,912 KB
testcase_08 AC 228 ms
19,192 KB
testcase_09 AC 135 ms
15,072 KB
testcase_10 AC 158 ms
16,412 KB
testcase_11 AC 239 ms
19,584 KB
testcase_12 AC 138 ms
15,448 KB
testcase_13 AC 137 ms
15,312 KB
testcase_14 AC 212 ms
18,592 KB
testcase_15 AC 172 ms
16,800 KB
testcase_16 AC 92 ms
13,568 KB
testcase_17 AC 34 ms
11,008 KB
testcase_18 AC 97 ms
13,544 KB
testcase_19 AC 126 ms
14,868 KB
testcase_20 AC 112 ms
14,700 KB
testcase_21 AC 139 ms
15,444 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 28 ms
10,880 KB
testcase_24 AC 239 ms
20,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D=map(int,input().split())
a=[0]+list(map(int,input().split()))
x=[0]*N
for i in range(1,N):
    x[i]=x[i-1]+a[i]

print("0",end="") #0番
for i in range(1,N):
    x[i]=max(x[i-1]+D,x[i])
    print(" "+str(x[i]),end="") #1~N-1番
print("")
0