結果

問題 No.488 四角関係
ユーザー yumechi
提出日時 2017-02-25 01:54:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 756 ms / 5,000 ms
コード長 652 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,776 KB
実行使用メモリ 109,440 KB
最終ジャッジ日時 2025-01-03 08:30:43
合計ジャッジ時間 7,024 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import itertools


def solve():
	n, m = map(int, input().split())
	node_pair = []
	
	for _ in range(m):
		a, b = map(int, input().split())
		node_pair.append([a, b])
	
	node_dict = defaultdict(list)
	for pair in node_pair:
		node_dict[pair[0]].append(pair[1])
		node_dict[pair[1]].append(pair[0])
	
	ans = 0
	for square in list(itertools.combinations(range(0, 51), 4)):
		for idx in range(4):
			connection_count = 0
			for node in node_dict[square[idx]]:
				if node in square:
					connection_count += 1
			if connection_count != 2:
				break
		else:
			ans += 1
	print(ans)


if __name__=="__main__":
    solve()
0