結果

問題 No.707 書道
ユーザー fukafukatanifukafukatani
提出日時 2021-06-24 20:22:59
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,103 ms / 2,000 ms
コード長 631 bytes
コンパイル時間 12,069 ms
コンパイル使用メモリ 271,916 KB
実行使用メモリ 66,428 KB
最終ジャッジ日時 2024-06-25 07:32:57
合計ジャッジ時間 21,632 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 971 ms
65,888 KB
testcase_01 AC 965 ms
65,992 KB
testcase_02 AC 1,020 ms
66,336 KB
testcase_03 AC 962 ms
66,036 KB
testcase_04 AC 967 ms
66,132 KB
testcase_05 AC 1,088 ms
66,276 KB
testcase_06 AC 1,103 ms
66,280 KB
testcase_07 AC 1,100 ms
66,428 KB
testcase_08 AC 983 ms
65,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)
  val h, w = sc.nextInt
  val poses = (0 until h).map({ _ =>
    val s = sc.next
    (0 until w).filter(s(_) == '1')
  })
  Console.err.println(poses(0).mkString(" "))
  val cands = (1 to w).map((0, _)) ++ (1 to w).map((h + 1, _)) ++ (1 to h).map((_, 0)) ++ (1 to h).map((_, w + 1))
  val ans = cands.map({
    case (sy, sx) => (0 until h).map({
      cy =>
        poses(cy).map({
          cx =>
            math.sqrt(((cx + 1 - sx) * (cx + 1 - sx) + (cy + 1 - sy) * (cy + 1 - sy)).toFloat)
        }).sum
    }).sum
  }).min
  println(ans)
}
0