結果

問題 No.455 冬の大三角
ユーザー 💕💖💞💕💖💞
提出日時 2018-06-28 16:01:44
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,187 bytes
コンパイル時間 14,259 ms
コンパイル使用メモリ 446,288 KB
実行使用メモリ 52,852 KB
最終ジャッジ日時 2024-11-20 16:30:57
合計ジャッジ時間 36,403 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
51,796 KB
testcase_01 AC 327 ms
51,968 KB
testcase_02 AC 335 ms
51,788 KB
testcase_03 AC 332 ms
51,692 KB
testcase_04 AC 331 ms
52,004 KB
testcase_05 AC 328 ms
51,704 KB
testcase_06 AC 333 ms
51,752 KB
testcase_07 AC 330 ms
51,792 KB
testcase_08 AC 410 ms
52,852 KB
testcase_09 AC 329 ms
52,028 KB
testcase_10 AC 330 ms
51,836 KB
testcase_11 AC 330 ms
51,948 KB
testcase_12 AC 328 ms
51,788 KB
testcase_13 AC 330 ms
51,688 KB
testcase_14 AC 332 ms
51,740 KB
testcase_15 AC 338 ms
51,860 KB
testcase_16 AC 332 ms
51,828 KB
testcase_17 AC 337 ms
51,684 KB
testcase_18 AC 329 ms
52,028 KB
testcase_19 AC 331 ms
51,700 KB
testcase_20 AC 333 ms
51,740 KB
testcase_21 AC 330 ms
51,984 KB
testcase_22 AC 328 ms
51,856 KB
testcase_23 AC 336 ms
51,660 KB
testcase_24 AC 326 ms
51,948 KB
testcase_25 AC 326 ms
51,692 KB
testcase_26 AC 327 ms
51,772 KB
testcase_27 AC 330 ms
51,996 KB
testcase_28 AC 332 ms
51,792 KB
testcase_29 AC 409 ms
52,684 KB
testcase_30 AC 371 ms
52,148 KB
testcase_31 AC 356 ms
52,164 KB
testcase_32 AC 355 ms
52,068 KB
testcase_33 AC 407 ms
52,668 KB
testcase_34 AC 339 ms
51,804 KB
testcase_35 AC 389 ms
52,364 KB
testcase_36 AC 369 ms
52,348 KB
testcase_37 AC 352 ms
52,220 KB
testcase_38 AC 347 ms
52,284 KB
testcase_39 AC 408 ms
52,516 KB
testcase_40 AC 379 ms
52,268 KB
testcase_41 AC 380 ms
52,196 KB
testcase_42 AC 355 ms
52,320 KB
testcase_43 AC 342 ms
52,268 KB
testcase_44 AC 342 ms
52,084 KB
testcase_45 AC 401 ms
52,536 KB
testcase_46 AC 369 ms
52,364 KB
testcase_47 AC 361 ms
52,124 KB
testcase_48 AC 356 ms
52,204 KB
testcase_49 AC 333 ms
51,828 KB
testcase_50 AC 340 ms
52,004 KB
testcase_51 AC 348 ms
51,824 KB
testcase_52 WA -
testcase_53 AC 346 ms
51,956 KB
testcase_54 AC 341 ms
51,868 KB
testcase_55 AC 340 ms
52,028 KB
testcase_56 AC 345 ms
51,924 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val (h, w) = readLine()!!.split(" ").map(String::toInt)
  val xs = (1..h).map {
    readLine()!!.toList().toMutableList()
  }
  outer@for( hstart in (0..h-1) ) {
    for( wstart in (0..w-1) ) {
      val copy = xs.map { it.toMutableList() }

      copy[hstart][wstart] = '*'
      if( copy.flatten().filter { it == '*' }.size != 3 ) continue

      val triples = mutableListOf<Pair<Int,Int>>()
      copy.mapIndexed { height, copy_line ->
        copy_line.mapIndexed { width, char ->
          if( char == '*' ) triples.add( Pair(height, width) )
        }
      }
      if( ( triples[0].first == triples[1].first && triples[1].first == triples[2].first ) ||
          ( triples[0].second == triples[1].second && triples[1].second == triples[2].second ) ) continue

     // 単位ベクトルを作成
     val (x, y) = Pair( ( triples[1].first.toDouble() + 1.0) / (triples[0].first+1.0), (triples[1].second.toDouble()+1.0)/(triples[0].second+1.0) )
     //println("$x $y")
     if( (triples[2].first.toDouble()+1.0)/x == (triples[2].second.toDouble()+1.0)/y) continue

      copy.map { it.joinToString("").run(::println) }
      break@outer
    }
  }
}
0