結果

問題 No.1335 1337
ユーザー CuriousFairy315CuriousFairy315
提出日時 2021-01-15 21:31:26
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 852 bytes
コンパイル時間 14,464 ms
コンパイル使用メモリ 440,140 KB
実行使用メモリ 51,424 KB
最終ジャッジ日時 2024-11-26 13:22:55
合計ジャッジ時間 18,909 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
50,956 KB
testcase_01 AC 308 ms
51,252 KB
testcase_02 AC 308 ms
51,360 KB
testcase_03 AC 301 ms
50,876 KB
testcase_04 AC 299 ms
51,288 KB
testcase_05 AC 317 ms
51,424 KB
testcase_06 AC 305 ms
51,244 KB
testcase_07 AC 301 ms
51,136 KB
testcase_08 AC 300 ms
50,844 KB
testcase_09 AC 307 ms
51,232 KB
testcase_10 AC 305 ms
50,812 KB
testcase_11 AC 308 ms
50,764 KB
testcase_12 AC 320 ms
50,960 KB
testcase_13 AC 332 ms
51,392 KB
testcase_14 AC 311 ms
51,232 KB
testcase_15 AC 317 ms
50,784 KB
testcase_16 AC 309 ms
51,224 KB
testcase_17 AC 316 ms
51,292 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:14:54: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
                if (Character.isDigit(c)) S[i] = A[c.toInt() - '0'.toInt()]
                                                     ^
Main.kt:14:68: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
                if (Character.isDigit(c)) S[i] = A[c.toInt() - '0'.toInt()]
                                                                   ^

ソースコード

diff #

package yukicoder

import java.util.*

class Main(private val args : Array<String>) : Runnable {
    override fun run() {
        solve(args)
    }
    private fun solve(@Suppress("UNUSED_PARAMETER") args: Array<String>) {
        Scanner(System.`in`).use { sc ->
            val A = sc.next().toCharArray()
            val S = sc.next().toCharArray()
            for ((i, c) in S.withIndex()) {
                if (Character.isDigit(c)) S[i] = A[c.toInt() - '0'.toInt()]
            }
            println(S)
        }
    }
}

/** 確保するメモリの大きさ(単位: MB)  */
private const val MEMORY: Long = 64

fun main(args: Array<String>) {
    Thread.setDefaultUncaughtExceptionHandler { _: Thread?, e: Throwable ->
        e.printStackTrace()
        System.exit(1)
    }
    Thread(null, Main(args = args), "", MEMORY * 1048576L).start()
}
0