結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー matriematrie
提出日時 2020-12-19 22:50:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 162 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,848 KB
最終ジャッジ日時 2024-09-21 10:44:54
合計ジャッジ時間 4,105 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 125 ms
16,676 KB
testcase_03 AC 40 ms
11,520 KB
testcase_04 AC 125 ms
17,336 KB
testcase_05 AC 39 ms
11,520 KB
testcase_06 AC 134 ms
18,784 KB
testcase_07 AC 98 ms
15,344 KB
testcase_08 AC 168 ms
19,064 KB
testcase_09 AC 102 ms
14,952 KB
testcase_10 AC 124 ms
16,536 KB
testcase_11 AC 153 ms
19,592 KB
testcase_12 AC 105 ms
15,440 KB
testcase_13 AC 106 ms
15,436 KB
testcase_14 AC 161 ms
18,460 KB
testcase_15 AC 135 ms
16,928 KB
testcase_16 AC 75 ms
13,780 KB
testcase_17 AC 34 ms
11,008 KB
testcase_18 AC 69 ms
13,904 KB
testcase_19 AC 97 ms
15,532 KB
testcase_20 AC 88 ms
14,868 KB
testcase_21 AC 108 ms
15,312 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 148 ms
20,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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