結果
問題 | No.488 四角関係 |
ユーザー | toufu111 |
提出日時 | 2017-05-31 00:25:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 617 bytes |
コンパイル時間 | 1,286 ms |
コンパイル使用メモリ | 160,660 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-21 19:25:39 |
合計ジャッジ時間 | 1,835 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 1 ms
6,940 KB |
testcase_24 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int n, m; int g[55][55]; int main(){ cin >> n >> m; for(int i = 0; i < m; i++){ int a, b; cin >> a >> b; g[a][b] = g[b][a] = 1; } int t = 0; for(int i = 0; i < n; i++){ for(int j = i + 1; j < n; j++){ for(int k = j + 1; k < n; k++){ for(int l = k + 1; l < n; l++){ int x = g[i][j] + g[i][k] + g[i][l]; int y = g[j][i] + g[j][k] + g[j][l]; int z = g[k][i] + g[k][j] + g[k][l]; int w = g[l][i] + g[k][j] + g[l][k]; if(x == 2 && y == 2 && z == 2 && w == 2)t++; } } } } cout << t << endl; return 0; }