結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー Omura ShunsukeOmura Shunsuke
提出日時 2020-06-24 18:19:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 100,608 KB
最終ジャッジ日時 2024-07-03 20:12:37
合計ジャッジ時間 3,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 77 ms
90,912 KB
testcase_03 AC 52 ms
67,328 KB
testcase_04 AC 83 ms
94,220 KB
testcase_05 AC 49 ms
65,280 KB
testcase_06 AC 96 ms
97,536 KB
testcase_07 AC 68 ms
85,888 KB
testcase_08 AC 87 ms
99,680 KB
testcase_09 AC 71 ms
86,172 KB
testcase_10 AC 75 ms
89,568 KB
testcase_11 AC 91 ms
100,260 KB
testcase_12 AC 72 ms
87,424 KB
testcase_13 AC 70 ms
87,040 KB
testcase_14 AC 85 ms
97,408 KB
testcase_15 AC 79 ms
91,760 KB
testcase_16 AC 59 ms
78,688 KB
testcase_17 AC 49 ms
63,360 KB
testcase_18 AC 61 ms
80,064 KB
testcase_19 AC 70 ms
85,020 KB
testcase_20 AC 66 ms
83,328 KB
testcase_21 AC 72 ms
87,492 KB
testcase_22 AC 37 ms
52,096 KB
testcase_23 AC 38 ms
52,096 KB
testcase_24 AC 91 ms
100,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D=map(int,input().split())
a=[0]+list(map(int,input().split()))

#print(a)
b=[0]
for i in range(1,N):
    b.append(b[-1]+a[i])
#print(b)
for i in range(1,N):
    if b[i]-b[i-1]<D:
        b[i]=b[i-1]+D
print(*b)
0