結果

問題 No.1829 Möbius Tunnelling
ユーザー tatt61880
提出日時 2023-03-13 21:38:35
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 2,493 ms
コンパイル使用メモリ 144,972 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-18 07:46:10
合計ジャッジ時間 2,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var a: int :: cui@inputInt()
	var b: int :: cui@inputInt()
	var c: int :: cui@inputInt()
	
	var ans: bool :: false
	if(a = c)
	elif(a < b)
		if(a < c)
			do ans :: true
		end if
	elif(a > b)
		if(a > c)
			do ans :: true
		end if
	end if
	do cui@print((ans ?("Yes", "No")) ~ "\n")
end func
0