結果

問題 No.488 四角関係
ユーザー ynyn
提出日時 2017-02-26 15:22:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 557 ms / 5,000 ms
コード長 619 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 106,236 KB
最終ジャッジ日時 2024-06-11 16:40:08
合計ジャッジ時間 5,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 301 ms
91,088 KB
testcase_01 AC 224 ms
85,140 KB
testcase_02 AC 278 ms
89,472 KB
testcase_03 AC 146 ms
79,992 KB
testcase_04 AC 193 ms
83,352 KB
testcase_05 AC 336 ms
93,076 KB
testcase_06 AC 525 ms
106,236 KB
testcase_07 AC 557 ms
102,268 KB
testcase_08 AC 509 ms
102,668 KB
testcase_09 AC 37 ms
52,756 KB
testcase_10 AC 126 ms
78,768 KB
testcase_11 AC 61 ms
72,548 KB
testcase_12 AC 94 ms
77,588 KB
testcase_13 AC 120 ms
78,108 KB
testcase_14 AC 80 ms
76,980 KB
testcase_15 AC 54 ms
67,680 KB
testcase_16 AC 32 ms
52,872 KB
testcase_17 AC 34 ms
53,712 KB
testcase_18 AC 42 ms
60,820 KB
testcase_19 AC 44 ms
63,444 KB
testcase_20 AC 36 ms
53,812 KB
testcase_21 AC 32 ms
52,884 KB
testcase_22 AC 35 ms
52,924 KB
testcase_23 AC 34 ms
52,592 KB
testcase_24 AC 44 ms
63,356 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:
    cnt = 0
    x = list(itertools.permutations([i,j,k,l]))

    for loop in range(len(x)):
        x1 = x[loop][0]
        x2 = x[loop][1]
        x3 = x[loop][2]
        x4 = x[loop][3]

        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