結果

問題 No.455 冬の大三角
ユーザー 💕💖💞💕💖💞
提出日時 2018-06-28 16:22:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 1,342 bytes
コンパイル時間 14,434 ms
コンパイル使用メモリ 450,064 KB
実行使用メモリ 52,796 KB
最終ジャッジ日時 2024-11-20 16:32:11
合計ジャッジ時間 32,436 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
52,136 KB
testcase_01 AC 295 ms
51,792 KB
testcase_02 AC 304 ms
51,880 KB
testcase_03 AC 295 ms
51,820 KB
testcase_04 AC 298 ms
52,104 KB
testcase_05 AC 299 ms
51,720 KB
testcase_06 AC 291 ms
51,988 KB
testcase_07 AC 299 ms
51,792 KB
testcase_08 AC 359 ms
52,796 KB
testcase_09 AC 283 ms
51,968 KB
testcase_10 AC 287 ms
51,920 KB
testcase_11 AC 295 ms
51,776 KB
testcase_12 AC 300 ms
51,688 KB
testcase_13 AC 308 ms
52,000 KB
testcase_14 AC 288 ms
51,756 KB
testcase_15 AC 290 ms
51,704 KB
testcase_16 AC 285 ms
51,992 KB
testcase_17 AC 287 ms
52,084 KB
testcase_18 AC 290 ms
51,748 KB
testcase_19 AC 285 ms
51,916 KB
testcase_20 AC 290 ms
51,668 KB
testcase_21 AC 276 ms
51,916 KB
testcase_22 AC 282 ms
51,788 KB
testcase_23 AC 289 ms
51,984 KB
testcase_24 AC 293 ms
51,756 KB
testcase_25 AC 288 ms
51,748 KB
testcase_26 AC 293 ms
52,084 KB
testcase_27 AC 293 ms
51,808 KB
testcase_28 AC 285 ms
51,944 KB
testcase_29 AC 349 ms
52,556 KB
testcase_30 AC 337 ms
52,332 KB
testcase_31 AC 323 ms
52,216 KB
testcase_32 AC 338 ms
52,184 KB
testcase_33 AC 358 ms
52,728 KB
testcase_34 AC 297 ms
51,972 KB
testcase_35 AC 360 ms
52,416 KB
testcase_36 AC 322 ms
52,248 KB
testcase_37 AC 296 ms
52,220 KB
testcase_38 AC 308 ms
52,248 KB
testcase_39 AC 348 ms
52,536 KB
testcase_40 AC 319 ms
52,444 KB
testcase_41 AC 315 ms
52,328 KB
testcase_42 AC 303 ms
52,256 KB
testcase_43 AC 294 ms
52,048 KB
testcase_44 AC 296 ms
52,136 KB
testcase_45 AC 357 ms
52,648 KB
testcase_46 AC 318 ms
52,360 KB
testcase_47 AC 331 ms
52,248 KB
testcase_48 AC 311 ms
51,916 KB
testcase_49 AC 289 ms
51,840 KB
testcase_50 AC 321 ms
51,828 KB
testcase_51 AC 305 ms
51,904 KB
testcase_52 AC 317 ms
51,816 KB
testcase_53 AC 298 ms
51,904 KB
testcase_54 AC 289 ms
51,892 KB
testcase_55 AC 297 ms
52,128 KB
testcase_56 AC 320 ms
51,928 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) ) {
      if( hstart == 0 && wstart == 0 ) continue
      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+1, width+1) )
        }
      }
      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() - triples[0].first, (triples[1].second.toDouble() - triples[0].second) )
      //println("$x $y ${(triples[2].first.toDouble()+1.0)/x} ${(triples[2].second.toDouble()+1.0)/y}")
      if( (triples[2].first.toDouble()-triples[1].first.toDouble())/x == (triples[2].second.toDouble()-triples[1].second.toDouble())/y) continue

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