結果
問題 | No.1563 Same Degree |
ユーザー | startcpp |
提出日時 | 2021-06-26 13:04:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 508 bytes |
コンパイル時間 | 713 ms |
コンパイル使用メモリ | 70,600 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-25 10:09:11 |
合計ジャッジ時間 | 2,905 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 17 ms
5,376 KB |
testcase_12 | AC | 30 ms
5,376 KB |
testcase_13 | AC | 80 ms
5,376 KB |
testcase_14 | AC | 92 ms
5,376 KB |
testcase_15 | AC | 61 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> using namespace std; int T; int main() { cin >> T; while (T--) { int n, m; cin >> n >> m; int cnt[100000] = {0}; for (int i = 0; i < m; i++) { int u, v; cin >> u >> v; u--; v--; cnt[u]++; cnt[v]++; } sort(cnt, cnt + n); bool flag = true; for (int i = 0; i < n - 1; i++) { if (cnt[i] == cnt[i + 1]) { cout << "Yes" << endl; flag = true; break; } } if (!flag) { cout << "No" << endl; } } return 0; }