結果

問題 No.488 四角関係
ユーザー nebukuro09nebukuro09
提出日時 2017-02-24 23:57:49
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,316 ms / 5,000 ms
コード長 454 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 79,360 KB
最終ジャッジ日時 2024-06-10 23:36:33
合計ジャッジ時間 7,734 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
78,464 KB
testcase_01 AC 305 ms
78,848 KB
testcase_02 AC 320 ms
78,592 KB
testcase_03 AC 200 ms
78,336 KB
testcase_04 AC 246 ms
78,208 KB
testcase_05 AC 407 ms
78,336 KB
testcase_06 AC 482 ms
78,464 KB
testcase_07 AC 741 ms
78,592 KB
testcase_08 AC 1,316 ms
79,360 KB
testcase_09 AC 81 ms
75,776 KB
testcase_10 AC 168 ms
78,592 KB
testcase_11 AC 110 ms
78,080 KB
testcase_12 AC 139 ms
78,336 KB
testcase_13 AC 165 ms
78,592 KB
testcase_14 AC 122 ms
78,464 KB
testcase_15 AC 98 ms
77,952 KB
testcase_16 AC 79 ms
75,904 KB
testcase_17 AC 78 ms
75,648 KB
testcase_18 AC 93 ms
77,952 KB
testcase_19 AC 96 ms
78,080 KB
testcase_20 AC 83 ms
75,520 KB
testcase_21 AC 80 ms
75,776 KB
testcase_22 AC 81 ms
75,776 KB
testcase_23 AC 81 ms
75,776 KB
testcase_24 AC 97 ms
78,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations, permutations

n, m = map(int, raw_input().split())
adj = [set() for _ in xrange(n)]
for i in xrange(m):
    a, b = map(int, raw_input().split())
    adj[a].add(b)
    adj[b].add(a)


ans = 0
for c in combinations(range(n), 4):
    for p in permutations(c):
        if all(p[i] in adj[p[(i+1)%4]] for i in xrange(4)) and p[0] not in adj[p[2]] and p[1] not in adj[p[3]]:
            ans += 1
            break
print ans
0