結果

問題 No.488 四角関係
ユーザー brthyyjpbrthyyjp
提出日時 2020-08-28 09:47:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 826 ms / 5,000 ms
コード長 479 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-11-09 01:07:37
合計ジャッジ時間 5,137 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
76,160 KB
testcase_01 AC 179 ms
76,416 KB
testcase_02 AC 210 ms
76,288 KB
testcase_03 AC 119 ms
76,288 KB
testcase_04 AC 158 ms
75,776 KB
testcase_05 AC 266 ms
75,776 KB
testcase_06 AC 347 ms
76,288 KB
testcase_07 AC 452 ms
75,776 KB
testcase_08 AC 826 ms
76,544 KB
testcase_09 AC 41 ms
51,968 KB
testcase_10 AC 103 ms
75,776 KB
testcase_11 AC 64 ms
65,664 KB
testcase_12 AC 90 ms
75,776 KB
testcase_13 AC 104 ms
75,776 KB
testcase_14 AC 70 ms
69,888 KB
testcase_15 AC 54 ms
61,568 KB
testcase_16 AC 43 ms
51,968 KB
testcase_17 AC 43 ms
52,224 KB
testcase_18 AC 53 ms
60,288 KB
testcase_19 AC 58 ms
62,080 KB
testcase_20 AC 45 ms
52,864 KB
testcase_21 AC 43 ms
52,096 KB
testcase_22 AC 45 ms
52,480 KB
testcase_23 AC 43 ms
52,352 KB
testcase_24 AC 56 ms
61,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if n < 4:
    print(0)
    exit()

import itertools
ans = 0
for p in itertools.permutations(range(n), 4):
    for j in range(4):
            if p[(j+1)%4] not in g[p[j]]:
                break
    else:
        if p[2] not in g[p[0]] and  p[3] not in g[p[1]]:
            #print(p)
            ans += 1
ans //= 2**3
print(ans)
0