結果

問題 No.2184 A○B問題
ユーザー 箱星箱星
提出日時 2022-10-10 17:59:50
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 920 bytes
コンパイル時間 15,410 ms
コンパイル使用メモリ 442,040 KB
実行使用メモリ 56,436 KB
最終ジャッジ日時 2024-06-24 12:01:15
合計ジャッジ時間 21,167 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
56,436 KB
testcase_01 AC 316 ms
56,304 KB
testcase_02 AC 312 ms
56,104 KB
testcase_03 AC 311 ms
56,372 KB
testcase_04 AC 318 ms
55,548 KB
testcase_05 AC 313 ms
55,488 KB
testcase_06 AC 313 ms
55,532 KB
testcase_07 AC 313 ms
55,644 KB
testcase_08 AC 312 ms
55,672 KB
testcase_09 AC 310 ms
55,840 KB
testcase_10 AC 314 ms
55,712 KB
testcase_11 AC 314 ms
55,584 KB
testcase_12 AC 310 ms
55,724 KB
testcase_13 AC 315 ms
55,556 KB
testcase_14 AC 308 ms
55,552 KB
testcase_15 AC 307 ms
55,456 KB
testcase_16 AC 320 ms
55,576 KB
testcase_17 AC 309 ms
55,660 KB
testcase_18 AC 308 ms
55,528 KB
testcase_19 AC 318 ms
55,668 KB
testcase_20 AC 314 ms
55,612 KB
testcase_21 AC 307 ms
55,644 KB
testcase_22 AC 322 ms
55,516 KB
testcase_23 AC 316 ms
55,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val a = Array(5) { nextInt() }
    val b = Array(5) { nextInt() }
    val ab = (0 until 5).map { a[b[it] - 1] }
    println(ab.joinToString(" "))
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0