結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー 👑 KazunKazun
提出日時 2020-06-25 23:48:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 100,424 KB
最終ジャッジ日時 2024-07-03 21:57:58
合計ジャッジ時間 3,646 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 97 ms
91,008 KB
testcase_03 AC 66 ms
73,900 KB
testcase_04 AC 105 ms
94,080 KB
testcase_05 AC 64 ms
71,532 KB
testcase_06 AC 107 ms
96,896 KB
testcase_07 AC 85 ms
85,760 KB
testcase_08 AC 108 ms
99,712 KB
testcase_09 AC 89 ms
86,784 KB
testcase_10 AC 93 ms
89,448 KB
testcase_11 AC 111 ms
100,424 KB
testcase_12 AC 88 ms
87,284 KB
testcase_13 AC 88 ms
87,224 KB
testcase_14 AC 105 ms
97,152 KB
testcase_15 AC 96 ms
91,960 KB
testcase_16 AC 79 ms
81,132 KB
testcase_17 AC 62 ms
68,992 KB
testcase_18 AC 80 ms
81,792 KB
testcase_19 AC 86 ms
84,992 KB
testcase_20 AC 83 ms
83,712 KB
testcase_21 AC 87 ms
87,220 KB
testcase_22 AC 37 ms
51,968 KB
testcase_23 AC 35 ms
52,096 KB
testcase_24 AC 106 ms
99,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

T=["*",0]
for i in range(2,N+1):
    T.append(T[-1]+A[i])
    
for i in range(2,N+1):
    if T[i-1]+D>T[i]:
        T[i]=T[i-1]+D

for i in range(1,N+1):
    print(T[i],end="")
    if i!=N:
        print("",end=" ")
print()
0