結果

問題 No.208 王将
ユーザー 👑 tatt61880tatt61880
提出日時 2019-04-07 12:23:34
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 606 bytes
コンパイル時間 2,478 ms
コンパイル使用メモリ 156,396 KB
実行使用メモリ 4,352 KB
最終ジャッジ日時 2023-10-14 15:40:12
合計ジャッジ時間 3,244 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,352 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,352 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,352 KB
testcase_05 AC 2 ms
4,352 KB
testcase_06 AC 1 ms
4,348 KB
testcase_07 AC 2 ms
4,352 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 1 ms
4,348 KB
testcase_10 AC 2 ms
4,352 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,352 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 1 ms
4,348 KB
testcase_15 AC 2 ms
4,348 KB
testcase_16 AC 2 ms
4,348 KB
testcase_17 AC 2 ms
4,348 KB
testcase_18 AC 2 ms
4,348 KB
testcase_19 AC 2 ms
4,352 KB
testcase_20 AC 2 ms
4,348 KB
testcase_21 AC 2 ms
4,348 KB
testcase_22 AC 2 ms
4,348 KB
testcase_23 AC 1 ms
4,348 KB
testcase_24 AC 1 ms
4,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var ss: [][]char
	do ss :: cui@input().split(" ")
	var x: int :: ss[0].toInt(&)
	var y: int :: ss[1].toInt(&)
	do ss :: cui@input().split(" ")
	var x2: int :: ss[0].toInt(&)
	var y2: int :: ss[1].toInt(&)
	var ans: int :: [x.abs(), y.abs()].max()
	block b
		if(x.abs() <> y.abs())
			break b
		end if
		if(x2.abs() <> y2.abs())
			break b
		end if
		if(x.sign() <> x2.sign())
			break b
		end if
		if(y.sign() <> y2.sign())
			break b
		end if
		if(x.abs() < x2.abs())
			break b
		end if
		if(y.abs() < y2.abs())
			break b
		end if
		do ans :+ 1
	end block
	do cui@print("\{ans}\n")
end func
0