結果

問題 No.488 四角関係
ユーザー yumechiyumechi
提出日時 2017-02-25 01:57:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 592 ms / 5,000 ms
コード長 650 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,548 KB
最終ジャッジ日時 2024-06-11 03:47:21
合計ジャッジ時間 4,282 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
92,800 KB
testcase_01 AC 153 ms
86,144 KB
testcase_02 AC 127 ms
90,988 KB
testcase_03 AC 87 ms
81,024 KB
testcase_04 AC 108 ms
83,840 KB
testcase_05 AC 176 ms
94,760 KB
testcase_06 AC 168 ms
103,344 KB
testcase_07 AC 375 ms
101,080 KB
testcase_08 AC 592 ms
108,548 KB
testcase_09 AC 40 ms
54,016 KB
testcase_10 AC 76 ms
78,848 KB
testcase_11 AC 52 ms
64,640 KB
testcase_12 AC 77 ms
77,488 KB
testcase_13 AC 78 ms
78,464 KB
testcase_14 AC 58 ms
71,680 KB
testcase_15 AC 43 ms
59,660 KB
testcase_16 AC 39 ms
53,504 KB
testcase_17 AC 37 ms
53,504 KB
testcase_18 AC 42 ms
58,904 KB
testcase_19 AC 45 ms
60,928 KB
testcase_20 AC 38 ms
53,632 KB
testcase_21 AC 37 ms
54,144 KB
testcase_22 AC 44 ms
58,368 KB
testcase_23 AC 38 ms
53,888 KB
testcase_24 AC 44 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

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, n+1), 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