結果
問題 | No.565 回転拡大 |
ユーザー | 💕💖💞 |
提出日時 | 2018-06-28 12:59:58 |
言語 | Kotlin (1.9.23) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,139 bytes |
コンパイル時間 | 15,227 ms |
コンパイル使用メモリ | 447,220 KB |
実行使用メモリ | 55,412 KB |
最終ジャッジ日時 | 2024-11-20 16:28:53 |
合計ジャッジ時間 | 29,034 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 515 ms
55,412 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 382 ms
53,088 KB |
testcase_05 | AC | 343 ms
52,504 KB |
testcase_06 | AC | 380 ms
53,060 KB |
testcase_07 | AC | 379 ms
53,016 KB |
testcase_08 | WA | - |
testcase_09 | AC | 343 ms
52,584 KB |
testcase_10 | AC | 344 ms
52,544 KB |
testcase_11 | AC | 374 ms
52,764 KB |
testcase_12 | WA | - |
testcase_13 | AC | 350 ms
52,364 KB |
testcase_14 | AC | 344 ms
52,584 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | AC | 377 ms
52,900 KB |
testcase_19 | AC | 383 ms
52,852 KB |
testcase_20 | AC | 353 ms
52,564 KB |
testcase_21 | AC | 358 ms
52,396 KB |
testcase_22 | AC | 382 ms
52,696 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 386 ms
52,740 KB |
testcase_28 | AC | 382 ms
52,884 KB |
testcase_29 | RE | - |
testcase_30 | AC | 347 ms
52,376 KB |
testcase_31 | AC | 349 ms
52,356 KB |
testcase_32 | AC | 347 ms
52,360 KB |
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used fun main(args:Array<String>) { ^
ソースコード
fun main(args:Array<String>) { val (r, k) = readLine()!!.split(" ").map(String::toInt) val (h, w) = readLine()!!.split(" ").map(String::toInt) val orig = (1..h).map { readLine()!!.toList() } // make base when(r) { 0 -> (1..h).map { (1..w).map { null }.toMutableList<Char?>() } 90 -> (1..w).map { (1..h).map { null }.toMutableList<Char?>() } 180 -> (1..h).map { (1..w).map { null }.toMutableList<Char?>() } else -> (1..w).map { (1..h).map { null }.toMutableList<Char?>() } }.let { base -> // 90 val lambdasy = mapOf<Int, (Int)->Int>( 0 to { y -> y }, 90 to { y -> y }, 180 to { y -> w - 1 - y}, 270 to { y -> w - 1 - y } ) val lambdasx = mapOf<Int, (Int)->Int>( 0 to { x -> x }, 90 to { x -> h - 1 - x }, 180 to { x -> h - 1 - x}, 270 to { x -> x } ) (0..w-1).map { y -> (0..h-1).map { x -> val transy = lambdasy[r]!!(y) val transx = lambdasx[r]!!(x) //h -1 - x base[transy][transx] = orig[x][y] } } base.map { xs -> (1..k).map { xs.map { x -> (1..k).map { print(x.toString()) } } println("") } } } }