結果

問題 No.1850 Rewrite Product
ユーザー ID 21712ID 21712
提出日時 2024-11-30 20:44:42
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 256 bytes
コンパイル時間 11,884 ms
コンパイル使用メモリ 230,064 KB
実行使用メモリ 7,968 KB
最終ジャッジ日時 2024-11-30 20:44:55
合計ジャッジ時間 12,514 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	var t int
	Fscan(rd,&t)
	for ;t>0;t-- {
		var x,y int64
		Fscan(rd,&x,&y)
		z:=x/2
		if z*(x-z)>x {
			Println("Yes")
		} else {
			Println("No")
		}
	}
}
0