結果

問題 No.909 たぴの配置
ユーザー tatt61880tatt61880
提出日時 2021-02-25 17:21:11
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 302 ms / 3,000 ms
コード長 671 bytes
コンパイル時間 2,311 ms
コンパイル使用メモリ 146,148 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-09-16 11:39:48
合計ジャッジ時間 8,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 285 ms
6,656 KB
testcase_06 AC 293 ms
6,912 KB
testcase_07 AC 280 ms
6,528 KB
testcase_08 AC 292 ms
6,656 KB
testcase_09 AC 302 ms
6,912 KB
testcase_10 AC 276 ms
6,528 KB
testcase_11 AC 277 ms
6,528 KB
testcase_12 AC 272 ms
6,784 KB
testcase_13 AC 284 ms
6,912 KB
testcase_14 AC 269 ms
6,528 KB
testcase_15 AC 271 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var x: []int :: #[n]int
	for i(0, n - 1)
		do x[i] :: cui@inputInt()
	end for
	var y: []int :: #[n]int
	for i(0, n - 1)
		do y[i] :: cui@inputInt()
	end for
	
	var ok: int :: 0
	var ng: int :: 10 ^ 7
	while((ok - ng).abs() > 1)
		var mid: int :: (ok + ng) / 2
		var isOk: bool :: true
		
		for i(0, n - 1)
			if(mid > x[i] + y[i])
				do isOk :: false
				break i
			end if
		end for
		if(isOk)
			do ok :: mid
		else
			do ng :: mid
		end if
	end while
	var ans: int :: ok
	do cui@print("\{ans}\n")
	
	do cui@print("0\n")
	for i(0, n - 1)
		do cui@print("\{x[i] < ok ?(x[i], ok)}\n")
	end for
	do cui@print("\{ok}\n")
end func
0