結果
| 問題 |
No.1850 Rewrite Product
|
| コンテスト | |
| ユーザー |
ID 21712
|
| 提出日時 | 2024-11-30 20:41:04 |
| 言語 | Go (1.23.4) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 260 bytes |
| コンパイル時間 | 10,545 ms |
| コンパイル使用メモリ | 235,432 KB |
| 実行使用メモリ | 7,968 KB |
| 最終ジャッジ日時 | 2024-11-30 20:41:19 |
| 合計ジャッジ時間 | 11,449 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 1 |
ソースコード
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")
}
}
}
ID 21712