結果

問題 No.488 四角関係
ユーザー mlihua09mlihua09
提出日時 2020-09-16 19:55:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 296 ms / 5,000 ms
コード長 405 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 76,216 KB
最終ジャッジ日時 2024-06-22 03:30:24
合計ジャッジ時間 3,723 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
75,904 KB
testcase_01 AC 123 ms
75,532 KB
testcase_02 AC 144 ms
75,604 KB
testcase_03 AC 84 ms
75,476 KB
testcase_04 AC 105 ms
75,500 KB
testcase_05 AC 169 ms
75,580 KB
testcase_06 AC 250 ms
75,856 KB
testcase_07 AC 296 ms
75,664 KB
testcase_08 AC 285 ms
76,216 KB
testcase_09 AC 33 ms
52,876 KB
testcase_10 AC 72 ms
75,672 KB
testcase_11 AC 47 ms
65,204 KB
testcase_12 AC 64 ms
75,224 KB
testcase_13 AC 71 ms
75,860 KB
testcase_14 AC 52 ms
67,428 KB
testcase_15 AC 41 ms
61,052 KB
testcase_16 AC 33 ms
53,544 KB
testcase_17 AC 34 ms
52,864 KB
testcase_18 AC 38 ms
60,804 KB
testcase_19 AC 41 ms
60,988 KB
testcase_20 AC 33 ms
53,336 KB
testcase_21 AC 33 ms
52,940 KB
testcase_22 AC 33 ms
53,316 KB
testcase_23 AC 34 ms
53,856 KB
testcase_24 AC 40 ms
60,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

N, M = map(int, input().split())

X = [[0] * N for i in range(N)]

for i in range(M):
    
    a, b = map(int, input().split())
    
    X[a][b] = 1
    X[b][a] = 1
ans = 0
    
for i, j, k, l in permutations(range(N), r=4):
    
    if X[i][j] and X[j][k] and X[k][l] and X[l][i] and (not X[i][k]) and (not X[j][l]):
        
        ans += 1
        
print(ans // 8)
0