結果
問題 | No.488 四角関係 |
ユーザー | 41Toame |
提出日時 | 2018-09-07 11:10:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,053 bytes |
コンパイル時間 | 1,323 ms |
コンパイル使用メモリ | 158,948 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-26 09:03:23 |
合計ジャッジ時間 | 2,400 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
5,248 KB |
testcase_16 | WA | - |
testcase_17 | AC | 1 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 1 ms
5,248 KB |
testcase_23 | AC | 1 ms
5,248 KB |
testcase_24 | WA | - |
ソースコード
#include "bits/stdc++.h" using namespace std; #define ll long long int #define rep(i,n) for( int i = 0; i < n; i++ ) #define rrep(i,n) for( int i = n; i >= 0; i-- ) #define REP(i,s,t) for( int i = s; i <= t; i++ ) #define RREP(i,s,t) for( int i = s; i >= t; i-- ) #define dump(x) cerr << #x << " = " << (x) << endl; #define INF 2000000000 #define mod 1000000007 #define INF2 1000000000000000000 int main(void) { cin.tie(0); ios::sync_with_stdio(false); int N, M; cin >> N >> M; bool G[50][50]; rep(i, N) rep(j, N) G[i][j] = false; rep(i, M) { int a, b; cin >> a >> b; G[a][b] = G[b][a] = true; } int ans = 0; rep(i, N) { rep(j, N) { if (!G[i][j] || i == j) continue; rep(s, N) { if (!G[i][s] || j == s || i == s) continue; if (G[s][j]) continue; rep(t, N) { if (G[i][t] || s == t || j == t || i == t) continue; if (!G[j][t]) continue; if (!G[s][t]) continue; cout << i << " " << j << " " << s << " " << t << endl; ans++; } } } } cout << ans / 8 << endl; return 0; }