結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー ID 21712ID 21712
提出日時 2024-12-26 00:51:55
言語 Go
(1.23.4)
結果
AC  
実行時間 717 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 11,222 ms
コンパイル使用メモリ 220,836 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-12-26 00:52:18
合計ジャッジ時間 19,966 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 384 ms
6,016 KB
testcase_03 AC 53 ms
5,248 KB
testcase_04 AC 458 ms
6,016 KB
testcase_05 AC 37 ms
5,248 KB
testcase_06 AC 539 ms
6,016 KB
testcase_07 AC 276 ms
5,248 KB
testcase_08 AC 544 ms
6,016 KB
testcase_09 AC 275 ms
5,248 KB
testcase_10 AC 377 ms
6,016 KB
testcase_11 AC 579 ms
6,016 KB
testcase_12 AC 297 ms
5,504 KB
testcase_13 AC 319 ms
5,376 KB
testcase_14 AC 515 ms
6,016 KB
testcase_15 AC 402 ms
6,016 KB
testcase_16 AC 175 ms
5,248 KB
testcase_17 AC 14 ms
5,248 KB
testcase_18 AC 181 ms
5,248 KB
testcase_19 AC 250 ms
5,248 KB
testcase_20 AC 216 ms
5,248 KB
testcase_21 AC 294 ms
5,504 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 717 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"

func main() {
	var n, d, x0,x1 int64
	Scan(&n,&d)
	Print(x1)
	for i:=int64(1);i<n;i++ {
		var a int64
		Scan(&a)
		x0+=a
		if x1+d<x0 {
			x1=x0
		} else {
			x1+=d
		}
		Print(" ", x1)
	}
	Println()
}
0