結果
問題 | No.1563 Same Degree |
ユーザー | SK96376164 |
提出日時 | 2021-06-26 13:34:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 467 bytes |
コンパイル時間 | 1,632 ms |
コンパイル使用メモリ | 167,344 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-25 10:25:14 |
合計ジャッジ時間 | 5,509 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 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 | 15 ms
5,376 KB |
testcase_12 | AC | 29 ms
5,376 KB |
testcase_13 | AC | 78 ms
5,376 KB |
testcase_14 | AC | 89 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,n+1){ if(b[a[j]]>=1){ cout<<"Yes\n"; goto End; } b[a[j]]++; } cout<<"No\n"; End:; rep(j,100001)a[j]=0; rep(j,200001)b[j]=0; } }