結果

問題 No.1147 土偶Ⅱ
ユーザー 👑 hos.lyrichos.lyric
提出日時 2020-09-09 02:01:46
言語 Ruby
(3.3.0)
結果
AC  
実行時間 312 ms / 500 ms
コード長 286 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 24,064 KB
最終ジャッジ日時 2024-11-30 18:04:25
合計ジャッジ時間 3,965 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,160 KB
testcase_01 AC 79 ms
12,416 KB
testcase_02 AC 75 ms
12,032 KB
testcase_03 AC 75 ms
12,160 KB
testcase_04 AC 97 ms
12,928 KB
testcase_05 AC 81 ms
12,160 KB
testcase_06 AC 127 ms
14,208 KB
testcase_07 AC 215 ms
18,048 KB
testcase_08 AC 87 ms
12,416 KB
testcase_09 AC 115 ms
13,440 KB
testcase_10 AC 96 ms
12,800 KB
testcase_11 AC 312 ms
24,064 KB
testcase_12 AC 144 ms
15,232 KB
testcase_13 AC 92 ms
12,928 KB
testcase_14 AC 268 ms
22,272 KB
testcase_15 AC 141 ms
14,720 KB
testcase_16 AC 95 ms
12,800 KB
testcase_17 AC 77 ms
12,160 KB
testcase_18 AC 83 ms
12,160 KB
testcase_19 AC 142 ms
15,232 KB
testcase_20 AC 77 ms
12,160 KB
testcase_21 AC 75 ms
12,288 KB
testcase_22 AC 109 ms
13,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
d=(0..n).map{|u|(0..n).map{|v|u==v ?0:n}}
$<.map{|s|a,b=s.split.map &:to_i;d[a][b]=d[b][a]=1}
(1..n).map{|w|(1..n).map{|u|(1..n).map{|v|d[u][v]=[d[u][v],d[u][w]+d[w][v]].min}}}
z=0
(1..n).map{|u|(u+1..n).map{|v|(v+1..n).map{|w|d[u][v]!=2&&d[u][w]!=2&&d[v][w]!=2&&z+=1}}}
p z
0