結果

問題 No.1563 Same Degree
ユーザー ID 21712ID 21712
提出日時 2024-12-11 21:38:54
言語 Go
(1.22.1)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 13,473 ms
コンパイル使用メモリ 221,300 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-12-11 21:39:11
合計ジャッジ時間 13,991 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 56 ms
5,248 KB
testcase_02 AC 56 ms
5,248 KB
testcase_03 AC 55 ms
5,248 KB
testcase_04 AC 60 ms
5,248 KB
testcase_05 AC 59 ms
5,248 KB
testcase_06 AC 52 ms
5,248 KB
testcase_07 AC 54 ms
5,248 KB
testcase_08 AC 54 ms
5,248 KB
testcase_09 AC 52 ms
5,248 KB
testcase_10 AC 50 ms
5,248 KB
testcase_11 AC 19 ms
5,248 KB
testcase_12 AC 40 ms
5,248 KB
testcase_13 AC 117 ms
5,760 KB
testcase_14 AC 133 ms
5,760 KB
testcase_15 AC 85 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

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 n,m int
		Fscan(rd,&n,&m)
		for ;m>0;m-- {
			var u,v int
			Fscan(rd,&u,&v)
		}
		if n==1 {
			Println("No")
		} else {
			Println("Yes")
		}
	}
}
0