結果

問題 No.488 四角関係
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-21 14:36:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,015 ms / 5,000 ms
コード長 438 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 82,716 KB
最終ジャッジ日時 2024-09-21 14:36:56
合計ジャッジ時間 10,139 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 534 ms
79,628 KB
testcase_01 AC 696 ms
81,628 KB
testcase_02 AC 619 ms
81,224 KB
testcase_03 AC 561 ms
80,304 KB
testcase_04 AC 592 ms
81,620 KB
testcase_05 AC 768 ms
81,828 KB
testcase_06 AC 625 ms
80,268 KB
testcase_07 AC 1,015 ms
82,716 KB
testcase_08 AC 244 ms
77,776 KB
testcase_09 AC 37 ms
51,968 KB
testcase_10 AC 503 ms
80,480 KB
testcase_11 AC 145 ms
77,280 KB
testcase_12 AC 433 ms
80,476 KB
testcase_13 AC 508 ms
80,432 KB
testcase_14 AC 343 ms
78,960 KB
testcase_15 AC 131 ms
76,868 KB
testcase_16 AC 52 ms
59,264 KB
testcase_17 AC 44 ms
52,224 KB
testcase_18 AC 72 ms
68,608 KB
testcase_19 AC 94 ms
75,984 KB
testcase_20 AC 48 ms
61,184 KB
testcase_21 AC 45 ms
52,192 KB
testcase_22 AC 49 ms
61,312 KB
testcase_23 AC 44 ms
59,392 KB
testcase_24 AC 70 ms
70,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
e=[[0]*n for i in range(n)]
for i in range(m):
	a,b=map(int,input().split())
	a-=1
	b-=1
	e[a][b]=1
	e[b][a]=1
c=0
for p1 in range(n):
	for p2 in range(n):
		for p3 in range(n):
			for p4 in range(n):
				f=p1!=p2 and p1!=p3 and p1!=p4 and p2!=p3 and p2!=p4 and p3!=p4
				f&=e[p1][p2]==1
				f&=e[p2][p3]==1
				f&=e[p3][p4]==1
				f&=e[p4][p1]==1
				f&=e[p1][p3]==0
				f&=e[p2][p4]==0
				c+=f
print(c//8)
0