結果
問題 | No.488 四角関係 |
ユーザー |
|
提出日時 | 2020-05-01 11:24:11 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 7 ms / 5,000 ms |
コード長 | 474 bytes |
コンパイル時間 | 1,849 ms |
コンパイル使用メモリ | 192,380 KB |
最終ジャッジ日時 | 2025-01-10 03:56:38 |
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:8:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | int n,m; scanf("%d%d",&n,&m); | ~~~~~^~~~~~~~~~~~~~ main.cpp:11:31: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | int u,v; scanf("%d%d",&u,&v); | ~~~~~^~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; int main(){ int n,m; scanf("%d%d",&n,&m); bool A[50][50]={}; rep(i,m){ int u,v; scanf("%d%d",&u,&v); A[u][v]=A[v][u]=true; } int ans=0; rep(i,n){ rep(j,n) if(j!=i && A[i][j]) { rep(k,n) if(k!=i && k!=j && A[j][k] && !A[i][k]) { rep(l,n) if(l!=i && l!=j && l!=k && A[k][l] && A[l][i] && !A[j][l]) { ans++; } } } } printf("%d\n",ans/8); return 0; }