結果

問題 No.488 四角関係
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-21 14:31:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 390 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 78,960 KB
最終ジャッジ日時 2024-09-21 14:31:56
合計ジャッジ時間 4,129 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 92 ms
76,432 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 38 ms
52,352 KB
testcase_16 AC 36 ms
52,352 KB
testcase_17 AC 36 ms
52,096 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 37 ms
52,096 KB
testcase_21 AC 35 ms
51,968 KB
testcase_22 AC 35 ms
52,352 KB
testcase_23 AC 35 ms
51,584 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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(p1+1,n):
		for p3 in range(p2+1,n):
			for p4 in range(p3+1,n):
				f=1
				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)
0