結果

問題 No.1563 Same Degree
ユーザー 箱星箱星
提出日時 2021-06-26 13:04:01
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 719 ms / 2,000 ms
コード長 974 bytes
コンパイル時間 12,895 ms
コンパイル使用メモリ 444,548 KB
実行使用メモリ 94,540 KB
最終ジャッジ日時 2024-06-25 10:09:50
合計ジャッジ時間 22,588 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
56,848 KB
testcase_01 AC 555 ms
80,868 KB
testcase_02 AC 497 ms
80,424 KB
testcase_03 AC 494 ms
80,644 KB
testcase_04 AC 570 ms
80,612 KB
testcase_05 AC 551 ms
80,784 KB
testcase_06 AC 502 ms
80,496 KB
testcase_07 AC 509 ms
80,640 KB
testcase_08 AC 490 ms
80,528 KB
testcase_09 AC 554 ms
79,504 KB
testcase_10 AC 531 ms
74,784 KB
testcase_11 AC 470 ms
64,256 KB
testcase_12 AC 512 ms
72,384 KB
testcase_13 AC 677 ms
94,540 KB
testcase_14 AC 719 ms
94,160 KB
testcase_15 AC 654 ms
94,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*

fun PrintWriter.solve() {
    val numCases = nextInt()
    case@ for (_i in 0 until numCases) {
        val n = nextInt()
        val m = nextInt()
        val adj = Array(n) { mutableListOf<Int>() }
        for (i in 0 until m) {
            val v1 = nextInt() - 1
            val v2 = nextInt() - 1
            adj[v1].add(v2)
            adj[v2].add(v1)
        }
        println(if (adj.map { it.count() }.distinct().count() == n) "No" else "Yes")
    }
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0