結果

問題 No.488 四角関係
ユーザー lloyzlloyz
提出日時 2022-12-26 00:08:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 362 ms / 5,000 ms
コード長 609 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 76,996 KB
最終ジャッジ日時 2024-04-30 10:46:44
合計ジャッジ時間 3,817 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
75,892 KB
testcase_01 AC 126 ms
75,900 KB
testcase_02 AC 135 ms
76,268 KB
testcase_03 AC 97 ms
75,840 KB
testcase_04 AC 110 ms
76,000 KB
testcase_05 AC 153 ms
76,048 KB
testcase_06 AC 162 ms
76,404 KB
testcase_07 AC 244 ms
76,148 KB
testcase_08 AC 362 ms
76,996 KB
testcase_09 AC 36 ms
52,224 KB
testcase_10 AC 88 ms
76,180 KB
testcase_11 AC 57 ms
66,520 KB
testcase_12 AC 87 ms
76,136 KB
testcase_13 AC 86 ms
74,108 KB
testcase_14 AC 68 ms
70,588 KB
testcase_15 AC 56 ms
67,604 KB
testcase_16 AC 38 ms
54,192 KB
testcase_17 AC 36 ms
53,000 KB
testcase_18 AC 45 ms
61,408 KB
testcase_19 AC 49 ms
63,000 KB
testcase_20 AC 41 ms
59,652 KB
testcase_21 AC 39 ms
53,212 KB
testcase_22 AC 42 ms
59,380 KB
testcase_23 AC 38 ms
52,960 KB
testcase_24 AC 52 ms
63,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
G = [set() for _ in range(n)]
for _ in range(m):
    a, b = map(int, input().split())
    G[a].add(b)
    G[b].add(a)

ans = 0
for i in range(n):
    for j in range(n):
        if i == j:
            continue
        for k in range(n):
            if k == i or k == j:
                continue
            for l in range(n):
                if l == i or l == j or l == k:
                    continue
                if (j in G[i] and k in G[j] and l in G[k] and i in G[l]
                    and k not in G[i] and l not in G[j]):
                    ans += 1
print(ans // 8)
0