結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー arito_asuarito_asu
提出日時 2020-07-01 16:18:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,844 KB
最終ジャッジ日時 2024-09-14 02:25:44
合計ジャッジ時間 4,522 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 113 ms
20,224 KB
testcase_03 AC 40 ms
11,648 KB
testcase_04 AC 116 ms
21,412 KB
testcase_05 AC 41 ms
11,392 KB
testcase_06 AC 129 ms
23,992 KB
testcase_07 AC 88 ms
17,312 KB
testcase_08 AC 154 ms
24,764 KB
testcase_09 AC 92 ms
17,636 KB
testcase_10 AC 111 ms
19,940 KB
testcase_11 AC 143 ms
25,020 KB
testcase_12 AC 97 ms
18,248 KB
testcase_13 AC 96 ms
18,004 KB
testcase_14 AC 144 ms
23,736 KB
testcase_15 AC 120 ms
20,740 KB
testcase_16 AC 69 ms
14,808 KB
testcase_17 AC 32 ms
10,880 KB
testcase_18 AC 65 ms
14,936 KB
testcase_19 AC 87 ms
16,936 KB
testcase_20 AC 82 ms
16,312 KB
testcase_21 AC 98 ms
18,380 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 142 ms
26,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q=lambda:map(int,input().split())
n,d=q(); a=list(q())

nl = [0]

for i in a:
    nl.append(nl[-1] + i)
    
for j in range(len(nl)-1):
    dif = nl[j+1] - nl[j]
    if dif < d:
        nl[j+1] += (d-dif)

print(' '.join(map(str,nl)))
0