結果

問題 No.488 四角関係
ユーザー convexineqconvexineq
提出日時 2021-02-09 03:46:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 330 ms / 5,000 ms
コード長 331 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 76,080 KB
最終ジャッジ日時 2024-07-06 08:03:43
合計ジャッジ時間 3,797 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
76,080 KB
testcase_01 AC 134 ms
75,408 KB
testcase_02 AC 172 ms
75,424 KB
testcase_03 AC 91 ms
75,500 KB
testcase_04 AC 120 ms
75,244 KB
testcase_05 AC 198 ms
75,272 KB
testcase_06 AC 290 ms
75,696 KB
testcase_07 AC 330 ms
75,404 KB
testcase_08 AC 301 ms
76,024 KB
testcase_09 AC 39 ms
52,436 KB
testcase_10 AC 91 ms
75,408 KB
testcase_11 AC 54 ms
63,792 KB
testcase_12 AC 73 ms
75,412 KB
testcase_13 AC 89 ms
75,460 KB
testcase_14 AC 60 ms
69,272 KB
testcase_15 AC 49 ms
62,164 KB
testcase_16 AC 40 ms
53,488 KB
testcase_17 AC 39 ms
52,064 KB
testcase_18 AC 45 ms
60,432 KB
testcase_19 AC 48 ms
61,804 KB
testcase_20 AC 39 ms
52,332 KB
testcase_21 AC 37 ms
53,356 KB
testcase_22 AC 34 ms
52,688 KB
testcase_23 AC 35 ms
52,536 KB
testcase_24 AC 41 ms
62,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
g = [[0]*n for _ in range(n)]
for _ in range(m):
    a,b = map(int,input().split())
    g[a][b] = g[b][a] = 1
from itertools import permutations as p
ans = 0
for a,b,c,d in p(range(n),4):
    if g[a][b] == g[b][c] == g[c][d] == g[d][a] == 1 and g[a][c] == g[b][d] == 0:
        ans += 1
print(ans//8)
0