結果

問題 No.488 四角関係
ユーザー ynyn
提出日時 2017-02-26 15:59:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 497 ms / 5,000 ms
コード長 505 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 106,368 KB
最終ジャッジ日時 2024-06-11 16:42:41
合計ジャッジ時間 4,702 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
91,008 KB
testcase_01 AC 198 ms
84,480 KB
testcase_02 AC 249 ms
89,088 KB
testcase_03 AC 133 ms
79,992 KB
testcase_04 AC 170 ms
83,304 KB
testcase_05 AC 304 ms
92,544 KB
testcase_06 AC 465 ms
106,368 KB
testcase_07 AC 497 ms
102,784 KB
testcase_08 AC 468 ms
102,392 KB
testcase_09 AC 34 ms
52,352 KB
testcase_10 AC 111 ms
78,400 KB
testcase_11 AC 55 ms
70,272 KB
testcase_12 AC 83 ms
77,184 KB
testcase_13 AC 105 ms
78,072 KB
testcase_14 AC 72 ms
76,672 KB
testcase_15 AC 47 ms
66,304 KB
testcase_16 AC 32 ms
52,224 KB
testcase_17 AC 31 ms
52,096 KB
testcase_18 AC 37 ms
59,776 KB
testcase_19 AC 41 ms
62,208 KB
testcase_20 AC 32 ms
52,352 KB
testcase_21 AC 32 ms
52,480 KB
testcase_22 AC 33 ms
52,096 KB
testcase_23 AC 32 ms
52,736 KB
testcase_24 AC 39 ms
61,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n, m = map(int, input().split())
graph = [[0] * n for i in range(n)]

for i in range(m):
    a, b = map(int, input().split())
    graph[a][b] = 1
    graph[b][a] = 1

c = list(itertools.combinations(range(n), 4))
ans = 0
for i,j,k,l in c:
    x = list(itertools.permutations([i,j,k,l]))

    for x1,x2,x3,x4 in x:
        if graph[x1][x2] == graph[x2][x3] == graph[x3][x4] == graph[x4][x1] == 1 and graph[x1][x3] == graph[x2][x4] == 0:
            ans += 1
            break

print(ans)
0