結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー mochidanmochidan
提出日時 2020-06-29 15:21:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 1,069 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 118,896 KB
最終ジャッジ日時 2024-07-18 13:15:27
合計ジャッジ時間 5,871 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
86,588 KB
testcase_01 AC 124 ms
86,616 KB
testcase_02 AC 171 ms
108,696 KB
testcase_03 AC 142 ms
90,224 KB
testcase_04 AC 177 ms
113,196 KB
testcase_05 AC 143 ms
90,216 KB
testcase_06 AC 179 ms
114,884 KB
testcase_07 AC 155 ms
99,732 KB
testcase_08 AC 182 ms
118,184 KB
testcase_09 AC 160 ms
100,648 KB
testcase_10 AC 165 ms
104,684 KB
testcase_11 AC 183 ms
118,868 KB
testcase_12 AC 159 ms
101,480 KB
testcase_13 AC 161 ms
101,732 KB
testcase_14 AC 179 ms
114,776 KB
testcase_15 AC 174 ms
110,360 KB
testcase_16 AC 153 ms
94,844 KB
testcase_17 AC 142 ms
90,068 KB
testcase_18 AC 153 ms
96,056 KB
testcase_19 AC 158 ms
99,012 KB
testcase_20 AC 153 ms
97,268 KB
testcase_21 AC 160 ms
102,388 KB
testcase_22 AC 124 ms
86,408 KB
testcase_23 AC 123 ms
86,464 KB
testcase_24 AC 181 ms
118,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import sys
import math
from bisect import bisect_left
from bisect import bisect_right
from collections import defaultdict
from heapq import heappop, heappush
import itertools
import random
from decimal import *

input = sys.stdin.readline

def inputInt(): return int(input())
def inputMap(): return map(int, input().split())
def inputList(): return list(map(int, input().split()))
def inputStr(): return input()[:-1]

inf = float('inf')
mod = 1000000007

#-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
#-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-

def main():
	N,D = inputMap()
	A = inputList()

	moto = [0]
	for i,val in enumerate(A):
		tmp = moto[i] + val
		moto.append(tmp)

	ans = [0]
	for i in range(N):
		if i == 0:
			continue
		tmp = moto[i] - ans[i-1]
		if tmp >= D:
			ans.append(moto[i])
		else:
			aaa = D - tmp
			ans.append(moto[i]+aaa)

	print(*ans)

#-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
#-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
if __name__ == "__main__":
	main()
0