結果

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

ソースコード

diff #

package main

import . "fmt"

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