結果

問題 No.1850 Rewrite Product
ユーザー ID 21712ID 21712
提出日時 2024-11-30 20:41:04
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 10,545 ms
コンパイル使用メモリ 235,432 KB
実行使用メモリ 7,968 KB
最終ジャッジ日時 2024-11-30 20:41:19
合計ジャッジ時間 11,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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
		x-=z
		if x*z>=y {
			Println("Yes")
		} else {
			Println("No")
		}
	}
}
0