結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 135 ms
17,076 KB
testcase_03 AC 44 ms
11,648 KB
testcase_04 AC 148 ms
17,456 KB
testcase_05 AC 39 ms
11,392 KB
testcase_06 AC 176 ms
18,880 KB
testcase_07 AC 102 ms
15,596 KB
testcase_08 AC 184 ms
19,680 KB
testcase_09 AC 107 ms
15,452 KB
testcase_10 AC 130 ms
17,008 KB
testcase_11 AC 189 ms
19,584 KB
testcase_12 AC 115 ms
15,676 KB
testcase_13 AC 111 ms
15,668 KB
testcase_14 AC 177 ms
19,048 KB
testcase_15 AC 142 ms
17,324 KB
testcase_16 AC 77 ms
14,032 KB
testcase_17 AC 33 ms
11,008 KB
testcase_18 AC 84 ms
14,028 KB
testcase_19 AC 104 ms
15,528 KB
testcase_20 AC 96 ms
15,248 KB
testcase_21 AC 116 ms
15,828 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 194 ms
20,976 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(max(D+b[i-1],a[i]))
print(*b)
0