結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
105,300 KB
testcase_01 AC 274 ms
102,364 KB
testcase_02 AC 204 ms
102,784 KB
testcase_03 AC 205 ms
103,040 KB
testcase_04 AC 211 ms
102,868 KB
testcase_05 AC 261 ms
102,144 KB
testcase_06 AC 161 ms
103,260 KB
testcase_07 AC 504 ms
100,948 KB
testcase_08 AC 989 ms
108,660 KB
testcase_09 AC 114 ms
105,664 KB
testcase_10 AC 177 ms
105,452 KB
testcase_11 AC 159 ms
105,728 KB
testcase_12 AC 232 ms
102,872 KB
testcase_13 AC 188 ms
105,108 KB
testcase_14 AC 164 ms
105,216 KB
testcase_15 AC 128 ms
105,544 KB
testcase_16 AC 135 ms
105,728 KB
testcase_17 AC 124 ms
105,816 KB
testcase_18 AC 133 ms
105,668 KB
testcase_19 AC 141 ms
105,640 KB
testcase_20 AC 129 ms
105,664 KB
testcase_21 AC 117 ms
105,804 KB
testcase_22 AC 131 ms
105,592 KB
testcase_23 AC 129 ms
105,872 KB
testcase_24 AC 148 ms
105,728 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, 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