結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー kozykozy
提出日時 2020-07-21 16:06:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 523 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,204 KB
最終ジャッジ日時 2024-12-29 21:51:16
合計ジャッジ時間 4,559 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 121 ms
20,236 KB
testcase_03 AC 41 ms
11,904 KB
testcase_04 AC 130 ms
21,404 KB
testcase_05 AC 38 ms
11,520 KB
testcase_06 AC 161 ms
23,856 KB
testcase_07 AC 97 ms
17,572 KB
testcase_08 AC 159 ms
24,872 KB
testcase_09 AC 97 ms
17,604 KB
testcase_10 AC 116 ms
19,936 KB
testcase_11 AC 163 ms
25,144 KB
testcase_12 AC 106 ms
18,344 KB
testcase_13 AC 102 ms
18,044 KB
testcase_14 AC 155 ms
23,800 KB
testcase_15 AC 131 ms
20,608 KB
testcase_16 AC 74 ms
15,032 KB
testcase_17 AC 33 ms
11,008 KB
testcase_18 AC 75 ms
15,052 KB
testcase_19 AC 91 ms
17,188 KB
testcase_20 AC 85 ms
16,556 KB
testcase_21 AC 100 ms
18,360 KB
testcase_22 AC 41 ms
10,752 KB
testcase_23 AC 31 ms
10,496 KB
testcase_24 AC 162 ms
26,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D=map(int,input().split())
B=list(map(int,input().split()))
B.insert(0,0)
A=[0]*N
s=0
for i in range(1,N):
  s+=B[i]
  A[i]=s
  A[i]=max(A[i-1]+D,A[i])
print(" ".join(list(map(str,A))))
0