結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー tomoyaatcodertomoyaatcoder
提出日時 2020-08-01 17:10:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 94,336 KB
最終ジャッジ日時 2024-07-08 02:55:20
合計ジャッジ時間 3,250 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 79 ms
87,552 KB
testcase_03 AC 52 ms
67,072 KB
testcase_04 AC 78 ms
89,216 KB
testcase_05 AC 55 ms
65,408 KB
testcase_06 AC 86 ms
91,520 KB
testcase_07 AC 69 ms
83,456 KB
testcase_08 AC 84 ms
93,184 KB
testcase_09 AC 69 ms
83,584 KB
testcase_10 AC 74 ms
86,016 KB
testcase_11 AC 84 ms
93,940 KB
testcase_12 AC 69 ms
84,608 KB
testcase_13 AC 70 ms
84,736 KB
testcase_14 AC 83 ms
91,520 KB
testcase_15 AC 73 ms
87,936 KB
testcase_16 AC 60 ms
76,672 KB
testcase_17 AC 50 ms
63,744 KB
testcase_18 AC 61 ms
77,184 KB
testcase_19 AC 67 ms
82,560 KB
testcase_20 AC 64 ms
81,792 KB
testcase_21 AC 70 ms
84,736 KB
testcase_22 AC 36 ms
52,352 KB
testcase_23 AC 37 ms
51,584 KB
testcase_24 AC 85 ms
94,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def accumulate(a):
    n = len(a)
    ret = [0 for i in range(n + 1)]
    for i in range(1, n + 1):
        ret[i] = ret[i - 1] + a[i - 1]
    return ret
    
N, D = map(int, input().split())
a = list(map(int, input().split()))

positions = accumulate(a)
for i in range(1, N):
    gap = positions[i] - positions[i - 1]
    if gap < D:
        positions[i] = positions[i - 1] + D
print(*positions)
0