結果

問題 No.488 四角関係
ユーザー 6soukiti296soukiti29
提出日時 2017-03-22 16:43:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 909 ms / 5,000 ms
コード長 455 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,848 KB
最終ジャッジ日時 2024-07-05 17:40:32
合計ジャッジ時間 6,049 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 383 ms
20,352 KB
testcase_01 AC 261 ms
16,384 KB
testcase_02 AC 362 ms
19,456 KB
testcase_03 AC 131 ms
13,568 KB
testcase_04 AC 205 ms
15,360 KB
testcase_05 AC 447 ms
21,248 KB
testcase_06 AC 762 ms
30,848 KB
testcase_07 AC 841 ms
30,720 KB
testcase_08 AC 909 ms
30,720 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 95 ms
12,544 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 57 ms
11,264 KB
testcase_13 AC 84 ms
12,160 KB
testcase_14 AC 36 ms
10,880 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 26 ms
10,624 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 25 ms
10,624 KB
testcase_19 AC 25 ms
10,624 KB
testcase_20 AC 26 ms
10,624 KB
testcase_21 AC 23 ms
10,624 KB
testcase_22 AC 24 ms
10,624 KB
testcase_23 AC 25 ms
10,624 KB
testcase_24 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N,M = map(int,input().split())
glaph = [[0 for i in range(N)] for j in range(N)]
for m in range(M):
	a,b = set(map(int,input().split()))
	glaph[a][b] = 1
	glaph[b][a] = 1
A = [i for i in range(N)]
C = list(itertools.combinations(A,4))
num = 0
for c in C:
	side =[0,0,0,0]
	for i,k in enumerate(c):
		count = 0
		for m in c:
			if glaph[k][m] == 1:
				count = count + 1
		side[i] = count
	if side.count(2) == 4:
		num = num + 1
print(num)
0