結果

問題 No.640 76本のトロンボーン
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-29 11:25:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 643 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-07-20 17:23:44
合計ジャッジ時間 3,034 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,160 KB
testcase_01 AC 91 ms
12,032 KB
testcase_02 AC 90 ms
12,288 KB
testcase_03 AC 92 ms
12,288 KB
testcase_04 AC 91 ms
12,288 KB
testcase_05 AC 92 ms
12,160 KB
testcase_06 AC 148 ms
12,928 KB
testcase_07 AC 149 ms
12,800 KB
testcase_08 AC 150 ms
12,928 KB
testcase_09 AC 149 ms
12,800 KB
testcase_10 AC 146 ms
12,800 KB
testcase_11 AC 145 ms
12,800 KB
testcase_12 AC 144 ms
12,800 KB
testcase_13 AC 90 ms
12,160 KB
testcase_14 AC 143 ms
12,928 KB
testcase_15 AC 89 ms
12,160 KB
testcase_16 AC 91 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

k=0...n=gets.to_i
i=0..n-2
j=1...n
a=k.map{gets}
z=0
2.times{|r|3.times{|s|3.times{|t|
  d=k.map{|x|k.map{|y|(r<1?a[x][y]:a[y][x])>'$'}}
  w=0
  e=d[0]
  s<1&&e[i].all?&&i.map{|y|e[y]=nil}&&w=1
  s>1&&e[j].all?&&j.map{|y|e[y]=nil}&&w=1
  e=d[-1]
  t<1&&e[i].all?&&i.map{|y|e[y]=nil}&&w+=1
  t>1&&e[j].all?&&j.map{|y|e[y]=nil}&&w+=1
  k.map{|y|
    f=d.map{|e|e[y]}
    (f[i].all?||f[j].all?)&&w+=1
  }
  z<w&&z=w
}}}
p z
0