結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー kozykozy
提出日時 2020-07-21 16:06:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,284 KB
最終ジャッジ日時 2024-06-09 11:53:22
合計ジャッジ時間 3,508 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 105 ms
20,368 KB
testcase_03 AC 37 ms
11,904 KB
testcase_04 AC 119 ms
21,664 KB
testcase_05 AC 32 ms
11,520 KB
testcase_06 AC 137 ms
24,080 KB
testcase_07 AC 79 ms
17,568 KB
testcase_08 AC 139 ms
24,888 KB
testcase_09 AC 85 ms
17,740 KB
testcase_10 AC 100 ms
19,936 KB
testcase_11 AC 150 ms
25,128 KB
testcase_12 AC 95 ms
18,364 KB
testcase_13 AC 88 ms
18,168 KB
testcase_14 AC 137 ms
23,852 KB
testcase_15 AC 107 ms
20,612 KB
testcase_16 AC 60 ms
15,040 KB
testcase_17 AC 27 ms
11,008 KB
testcase_18 AC 63 ms
15,308 KB
testcase_19 AC 81 ms
17,032 KB
testcase_20 AC 74 ms
16,560 KB
testcase_21 AC 92 ms
18,372 KB
testcase_22 AC 27 ms
10,880 KB
testcase_23 AC 25 ms
10,624 KB
testcase_24 AC 148 ms
26,284 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