結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-22 07:16:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 100,432 KB
最終ジャッジ日時 2024-06-25 17:01:07
合計ジャッジ時間 4,042 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 85 ms
91,264 KB
testcase_03 AC 56 ms
68,224 KB
testcase_04 AC 88 ms
93,952 KB
testcase_05 AC 50 ms
66,236 KB
testcase_06 AC 85 ms
96,984 KB
testcase_07 AC 70 ms
85,996 KB
testcase_08 AC 98 ms
99,456 KB
testcase_09 AC 71 ms
86,560 KB
testcase_10 AC 80 ms
89,728 KB
testcase_11 AC 90 ms
99,948 KB
testcase_12 AC 71 ms
87,680 KB
testcase_13 AC 72 ms
87,692 KB
testcase_14 AC 85 ms
96,752 KB
testcase_15 AC 82 ms
91,996 KB
testcase_16 AC 65 ms
79,104 KB
testcase_17 AC 50 ms
64,360 KB
testcase_18 AC 66 ms
82,140 KB
testcase_19 AC 73 ms
84,992 KB
testcase_20 AC 67 ms
83,460 KB
testcase_21 AC 77 ms
87,540 KB
testcase_22 AC 36 ms
51,824 KB
testcase_23 AC 36 ms
52,648 KB
testcase_24 AC 93 ms
100,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())
A = list(map(int, input().split()))
X = [0]*n
for i in range(1, n):
    X[i] = X[i-1]+A[i-1]
ans = []
for i in range(n):
    if i == 0:
        ans.append(X[i])
    else:
        if X[i]-X[i-1] >= d:
            ans.append(X[i])
        else:
            X[i] += d-X[i]+X[i-1]
            ans.append(X[i])
print(*ans)
0