結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー rythem00359rythem00359
提出日時 2020-08-13 14:07:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,968 KB
最終ジャッジ日時 2024-10-09 19:11:28
合計ジャッジ時間 4,703 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 138 ms
17,336 KB
testcase_03 AC 44 ms
11,776 KB
testcase_04 AC 138 ms
17,448 KB
testcase_05 AC 39 ms
11,392 KB
testcase_06 AC 154 ms
19,004 KB
testcase_07 AC 103 ms
15,632 KB
testcase_08 AC 184 ms
20,004 KB
testcase_09 AC 112 ms
15,572 KB
testcase_10 AC 130 ms
17,100 KB
testcase_11 AC 172 ms
19,572 KB
testcase_12 AC 113 ms
15,880 KB
testcase_13 AC 115 ms
15,648 KB
testcase_14 AC 174 ms
19,376 KB
testcase_15 AC 142 ms
17,300 KB
testcase_16 AC 81 ms
14,008 KB
testcase_17 AC 35 ms
11,008 KB
testcase_18 AC 77 ms
14,028 KB
testcase_19 AC 102 ms
15,400 KB
testcase_20 AC 95 ms
15,384 KB
testcase_21 AC 116 ms
15,840 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 166 ms
20,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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