結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー zyxwzyxw
提出日時 2021-02-04 10:23:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 99,612 KB
最終ジャッジ日時 2024-06-30 15:32:01
合計ジャッジ時間 3,616 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,296 KB
testcase_01 AC 37 ms
52,180 KB
testcase_02 AC 77 ms
90,824 KB
testcase_03 AC 53 ms
69,576 KB
testcase_04 AC 81 ms
93,344 KB
testcase_05 AC 50 ms
66,292 KB
testcase_06 AC 86 ms
96,512 KB
testcase_07 AC 70 ms
85,284 KB
testcase_08 AC 91 ms
99,372 KB
testcase_09 AC 70 ms
85,916 KB
testcase_10 AC 74 ms
89,132 KB
testcase_11 AC 91 ms
99,332 KB
testcase_12 AC 71 ms
86,748 KB
testcase_13 AC 71 ms
86,452 KB
testcase_14 AC 85 ms
96,228 KB
testcase_15 AC 79 ms
91,248 KB
testcase_16 AC 59 ms
78,080 KB
testcase_17 AC 50 ms
63,728 KB
testcase_18 AC 64 ms
79,488 KB
testcase_19 AC 68 ms
84,724 KB
testcase_20 AC 68 ms
83,208 KB
testcase_21 AC 71 ms
87,424 KB
testcase_22 AC 37 ms
52,560 KB
testcase_23 AC 37 ms
52,728 KB
testcase_24 AC 90 ms
99,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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