結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー ssmkzkssmkzk
提出日時 2020-10-04 17:36:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 278 bytes
コンパイル時間 900 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 25,452 KB
最終ジャッジ日時 2024-07-19 17:32:55
合計ジャッジ時間 9,172 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
16,128 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 1,412 ms
16,424 KB
testcase_03 AC 47 ms
11,392 KB
testcase_04 TLE -
testcase_05 AC 37 ms
11,136 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int,input().split())
l = list(map(int, input().split()))
nowp = 0
suml = 0
ans = "0 "

for l_i in l:
    suml += l_i
    if suml - nowp < D:
        nowp += D
        ans += (str(nowp) + " ")
    else:
        nowp = suml
        ans += (str(nowp) + " ")


print(ans)
0