結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー pluto77pluto77
提出日時 2020-07-30 11:32:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,576 KB
最終ジャッジ日時 2024-07-03 18:31:33
合計ジャッジ時間 3,894 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 122 ms
17,028 KB
testcase_03 AC 41 ms
11,648 KB
testcase_04 AC 135 ms
17,448 KB
testcase_05 AC 38 ms
11,264 KB
testcase_06 AC 162 ms
18,744 KB
testcase_07 AC 95 ms
15,380 KB
testcase_08 AC 161 ms
19,244 KB
testcase_09 AC 99 ms
15,572 KB
testcase_10 AC 114 ms
16,840 KB
testcase_11 AC 168 ms
19,568 KB
testcase_12 AC 100 ms
15,384 KB
testcase_13 AC 101 ms
15,492 KB
testcase_14 AC 152 ms
18,696 KB
testcase_15 AC 131 ms
17,004 KB
testcase_16 AC 70 ms
13,636 KB
testcase_17 AC 31 ms
11,008 KB
testcase_18 AC 75 ms
14,020 KB
testcase_19 AC 92 ms
15,260 KB
testcase_20 AC 84 ms
15,268 KB
testcase_21 AC 103 ms
15,796 KB
testcase_22 AC 27 ms
10,496 KB
testcase_23 AC 28 ms
10,624 KB
testcase_24 AC 172 ms
20,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1090
n,d=map(int,input().split())
a=list(map(int,input().split()))
res=[0]
x=0
for i in a:
 x+=i
 res.append(max(x,res[-1]+d))
print(*res)
0