結果

問題 No.1829 Möbius Tunnelling
ユーザー ID 21712
提出日時 2024-11-30 21:21:45
言語 Go
(1.23.4)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 11,832 ms
コンパイル使用メモリ 235,808 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-30 21:21:58
合計ジャッジ時間 12,987 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"

func main() {
	var n,a,b,c int64
	Scan(&n,&a,&b,&c)
	ok:=false
	if a < b {
		ok=a<c
	} else {
		ok=c<a
	}
	if ok {
		Println("Yes")
	} else {
		Println("No")
	}
}
0