結果

問題 No.488 四角関係
ユーザー lloyzlloyz
提出日時 2022-12-26 00:08:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 341 ms / 5,000 ms
コード長 609 bytes
コンパイル時間 1,045 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 77,004 KB
最終ジャッジ日時 2024-11-20 04:57:20
合計ジャッジ時間 3,736 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
76,168 KB
testcase_01 AC 125 ms
75,792 KB
testcase_02 AC 127 ms
75,792 KB
testcase_03 AC 94 ms
75,888 KB
testcase_04 AC 105 ms
76,036 KB
testcase_05 AC 146 ms
76,040 KB
testcase_06 AC 150 ms
76,032 KB
testcase_07 AC 223 ms
75,784 KB
testcase_08 AC 341 ms
77,004 KB
testcase_09 AC 36 ms
52,248 KB
testcase_10 AC 84 ms
75,716 KB
testcase_11 AC 54 ms
66,868 KB
testcase_12 AC 87 ms
75,884 KB
testcase_13 AC 79 ms
74,156 KB
testcase_14 AC 64 ms
70,736 KB
testcase_15 AC 55 ms
66,948 KB
testcase_16 AC 37 ms
53,676 KB
testcase_17 AC 36 ms
52,772 KB
testcase_18 AC 45 ms
61,280 KB
testcase_19 AC 47 ms
62,656 KB
testcase_20 AC 40 ms
58,440 KB
testcase_21 AC 37 ms
52,336 KB
testcase_22 AC 41 ms
59,872 KB
testcase_23 AC 36 ms
53,492 KB
testcase_24 AC 49 ms
64,112 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