結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,416 KB
testcase_01 AC 81 ms
12,160 KB
testcase_02 AC 77 ms
12,288 KB
testcase_03 AC 77 ms
12,288 KB
testcase_04 AC 97 ms
13,184 KB
testcase_05 AC 82 ms
12,288 KB
testcase_06 AC 129 ms
14,336 KB
testcase_07 AC 212 ms
18,048 KB
testcase_08 AC 86 ms
12,288 KB
testcase_09 AC 116 ms
13,440 KB
testcase_10 AC 97 ms
12,928 KB
testcase_11 AC 318 ms
24,064 KB
testcase_12 AC 150 ms
15,232 KB
testcase_13 AC 95 ms
12,800 KB
testcase_14 AC 268 ms
22,272 KB
testcase_15 AC 139 ms
14,592 KB
testcase_16 AC 99 ms
12,800 KB
testcase_17 AC 81 ms
12,160 KB
testcase_18 AC 85 ms
12,160 KB
testcase_19 AC 149 ms
15,360 KB
testcase_20 AC 76 ms
12,416 KB
testcase_21 AC 77 ms
12,160 KB
testcase_22 AC 112 ms
13,184 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