結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー takakintakakin
提出日時 2020-07-18 20:44:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 20,852 KB
最終ジャッジ日時 2024-05-08 05:20:42
合計ジャッジ時間 3,724 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 119 ms
17,052 KB
testcase_03 AC 40 ms
11,648 KB
testcase_04 AC 122 ms
17,468 KB
testcase_05 AC 37 ms
11,392 KB
testcase_06 AC 138 ms
18,892 KB
testcase_07 AC 94 ms
15,480 KB
testcase_08 AC 162 ms
19,192 KB
testcase_09 AC 98 ms
15,460 KB
testcase_10 AC 114 ms
16,952 KB
testcase_11 AC 155 ms
19,592 KB
testcase_12 AC 110 ms
15,660 KB
testcase_13 AC 102 ms
15,624 KB
testcase_14 AC 162 ms
18,592 KB
testcase_15 AC 132 ms
17,168 KB
testcase_16 AC 69 ms
13,916 KB
testcase_17 AC 30 ms
11,136 KB
testcase_18 AC 73 ms
13,916 KB
testcase_19 AC 91 ms
15,408 KB
testcase_20 AC 83 ms
15,260 KB
testcase_21 AC 103 ms
15,672 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 AC 147 ms
20,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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