結果

問題 No.488 四角関係
ユーザー cympfhcympfh
提出日時 2017-02-25 23:37:21
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,381 ms / 5,000 ms
コード長 462 bytes
コンパイル時間 61 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-11 15:15:32
合計ジャッジ時間 8,398 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
12,288 KB
testcase_01 AC 303 ms
12,288 KB
testcase_02 AC 330 ms
12,416 KB
testcase_03 AC 170 ms
12,160 KB
testcase_04 AC 229 ms
12,416 KB
testcase_05 AC 462 ms
12,160 KB
testcase_06 AC 570 ms
12,160 KB
testcase_07 AC 973 ms
12,288 KB
testcase_08 AC 2,381 ms
12,416 KB
testcase_09 AC 82 ms
12,416 KB
testcase_10 AC 135 ms
12,288 KB
testcase_11 AC 87 ms
12,032 KB
testcase_12 AC 120 ms
12,416 KB
testcase_13 AC 130 ms
12,160 KB
testcase_14 AC 95 ms
12,288 KB
testcase_15 AC 87 ms
12,032 KB
testcase_16 AC 84 ms
12,288 KB
testcase_17 AC 84 ms
12,032 KB
testcase_18 AC 83 ms
12,416 KB
testcase_19 AC 86 ms
12,160 KB
testcase_20 AC 84 ms
12,160 KB
testcase_21 AC 83 ms
12,160 KB
testcase_22 AC 83 ms
12,288 KB
testcase_23 AC 82 ms
12,032 KB
testcase_24 AC 84 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m = gets.chomp.split.map(&:to_i)
e=(0...n).map{|x| [x, []]}.to_h
m.times.map {
  u,v=gets.split.map(&:to_i)
  e[u] << v
  e[v] << u
}
ans=0
(0...n).to_a.combination(4) {|xs|
  u = xs[0]
  rest = xs[1..-1]
  rest.permutation(3) { |ys|
    next unless e[u].index ys[0]
    next unless e[ys[0]].index ys[1]
    next unless e[ys[1]].index ys[2]
    next unless e[ys[2]].index u
    next if e[u].index ys[1]
    next if e[ys[0]].index ys[2]
    ans+=1
  }
}
p ans/2
0