結果
| 問題 | No.455 冬の大三角 |
| コンテスト | |
| ユーザー |
💕💖💞
|
| 提出日時 | 2018-06-28 15:54:00 |
| 言語 | Kotlin (2.1.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,123 bytes |
| 記録 | |
| コンパイル時間 | 14,103 ms |
| コンパイル使用メモリ | 444,364 KB |
| 実行使用メモリ | 90,736 KB |
| 最終ジャッジ日時 | 2024-11-20 16:30:13 |
| 合計ジャッジ時間 | 32,919 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 52 WA * 2 |
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
^
ソースコード
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()/triples[0].first, triples[1].second.toDouble()/triples[0].second )
if( triples[2].first.toDouble()/x == triples[2].second.toDouble()/y) continue
copy.map { it.joinToString("").run(::println) }
break@outer
}
}
}
💕💖💞