結果
問題 | No.1563 Same Degree |
ユーザー | SK96376164 |
提出日時 | 2021-06-26 13:19:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 420 bytes |
コンパイル時間 | 1,537 ms |
コンパイル使用メモリ | 165,084 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 10:20:43 |
合計ジャッジ時間 | 2,949 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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 | 14 ms
5,376 KB |
testcase_12 | AC | 28 ms
5,376 KB |
testcase_13 | AC | 78 ms
5,376 KB |
testcase_14 | AC | 90 ms
5,376 KB |
testcase_15 | AC | 61 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; typedef long long ll; int a[100001]; int b[200001]; int main(){ int t;cin>>t; rep(i,t){ int n,m;cin>>n>>m; rep(j,m){ int u,v;cin>>u>>v; a[u]++; a[v]++; } rep(j,100001){ if(b[a[j]]>=1){ cout<<"Yes\n"; goto End; } b[a[j]]++; } cout<<"No\n"; End:; } }