結果

問題 No.488 四角関係
ユーザー ynyn
提出日時 2017-02-26 15:28:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 599 ms / 5,000 ms
コード長 607 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 106,496 KB
最終ジャッジ日時 2024-06-11 16:41:41
合計ジャッジ時間 5,592 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
90,880 KB
testcase_01 AC 246 ms
84,736 KB
testcase_02 AC 309 ms
89,580 KB
testcase_03 AC 161 ms
80,088 KB
testcase_04 AC 208 ms
83,272 KB
testcase_05 AC 358 ms
93,056 KB
testcase_06 AC 565 ms
106,496 KB
testcase_07 AC 599 ms
102,528 KB
testcase_08 AC 551 ms
102,624 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 138 ms
78,464 KB
testcase_11 AC 68 ms
70,912 KB
testcase_12 AC 100 ms
77,184 KB
testcase_13 AC 131 ms
78,308 KB
testcase_14 AC 89 ms
77,312 KB
testcase_15 AC 59 ms
67,328 KB
testcase_16 AC 38 ms
52,096 KB
testcase_17 AC 38 ms
52,224 KB
testcase_18 AC 44 ms
59,776 KB
testcase_19 AC 50 ms
62,592 KB
testcase_20 AC 39 ms
52,480 KB
testcase_21 AC 36 ms
52,224 KB
testcase_22 AC 37 ms
52,096 KB
testcase_23 AC 38 ms
52,224 KB
testcase_24 AC 47 ms
61,312 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 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