結果

問題 No.1563 Same Degree
ユーザー take000take000
提出日時 2021-07-02 23:28:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 2,145 ms
コンパイル使用メモリ 204,080 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-11 23:55:05
合計ジャッジ時間 4,712 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 33 ms
4,380 KB
testcase_02 AC 31 ms
4,380 KB
testcase_03 AC 31 ms
4,380 KB
testcase_04 AC 33 ms
4,380 KB
testcase_05 AC 32 ms
4,376 KB
testcase_06 AC 36 ms
4,376 KB
testcase_07 AC 35 ms
4,380 KB
testcase_08 AC 36 ms
4,380 KB
testcase_09 AC 36 ms
4,376 KB
testcase_10 AC 36 ms
4,380 KB
testcase_11 AC 14 ms
4,380 KB
testcase_12 AC 27 ms
4,380 KB
testcase_13 AC 73 ms
4,376 KB
testcase_14 AC 84 ms
4,384 KB
testcase_15 AC 56 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < n; ++i)
typedef long long ll;
using namespace std;

int main() {
    int T;
    cin >> T;
    while (T--) {
        int N, M;
        cin >> N >> M;
        vector<int> d(N);
        rep(i, M) {
            int u, v;
            cin >> u >> v;
            u--, v--;
            d[u]++;
            d[v]++;
        }
        set<int> st;
        rep(i, N) st.insert(d[i]);
        if (st.size() == N)
            cout << "No\n";
        else
            cout << "Yes\n";
    }

    return 0;
}
0