結果

問題 No.488 四角関係
ユーザー 0w10w1
提出日時 2017-04-09 19:50:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 926 ms / 5,000 ms
コード長 911 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,060 KB
最終ジャッジ日時 2024-07-18 01:37:16
合計ジャッジ時間 7,371 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 451 ms
78,028 KB
testcase_01 AC 396 ms
78,292 KB
testcase_02 AC 425 ms
77,484 KB
testcase_03 AC 246 ms
77,536 KB
testcase_04 AC 315 ms
78,112 KB
testcase_05 AC 556 ms
78,088 KB
testcase_06 AC 750 ms
77,704 KB
testcase_07 AC 926 ms
79,060 KB
testcase_08 AC 605 ms
76,688 KB
testcase_09 AC 34 ms
52,096 KB
testcase_10 AC 205 ms
77,984 KB
testcase_11 AC 94 ms
76,288 KB
testcase_12 AC 175 ms
78,164 KB
testcase_13 AC 206 ms
78,088 KB
testcase_14 AC 142 ms
77,884 KB
testcase_15 AC 56 ms
73,088 KB
testcase_16 AC 40 ms
59,136 KB
testcase_17 AC 34 ms
51,712 KB
testcase_18 AC 47 ms
63,872 KB
testcase_19 AC 65 ms
73,984 KB
testcase_20 AC 45 ms
62,208 KB
testcase_21 AC 37 ms
52,224 KB
testcase_22 AC 47 ms
62,720 KB
testcase_23 AC 43 ms
59,392 KB
testcase_24 AC 61 ms
69,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map( int, input().split() )
adj = [ [ 0 for i in range( N ) ] for j in range( N ) ]
for i in range( M ):
  u, v = map( int, input().split() )
  adj[ u ][ v ] = 1
  adj[ v ][ u ] = 1
bag = set()
for i in range( N ):
  for j in range( N ):
    for k in range( N ):
      for l in range( N ):
        qq = set()
        qq.add( i )
        qq.add( j )
        qq.add( k )
        qq.add( l )
        if len( qq ) != 4: continue
        if adj[ i ][ j ] and adj[ j ][ k ] and adj[ i ][ k ]: continue
        if adj[ j ][ k ] and adj[ k ][ l ] and adj[ l ][ j ]: continue
        if adj[ i ][ k ] and adj[ k ][ l ] and adj[ l ][ i ]: continue
        if adj[ i ][ j ] and adj[ j ][ l ] and adj[ l ][ i ]: continue
        if adj[ i ][ j ] and adj[ j ][ k ] and adj[ k ][ l ] and adj[ l ][ i ]:
          f = sorted( [ i, j, k, l ] )
          bag.add( ( f[ 0 ], f[ 1 ], f[ 2 ], f[ 3 ] ) )
print( len( bag ) )
0