結果

問題 No.1335 1337
ユーザー CuriousFairy315CuriousFairy315
提出日時 2021-01-15 21:31:26
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 852 bytes
コンパイル時間 15,871 ms
コンパイル使用メモリ 434,732 KB
実行使用メモリ 51,524 KB
最終ジャッジ日時 2024-05-04 22:47:43
合計ジャッジ時間 18,585 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
51,420 KB
testcase_01 AC 308 ms
51,352 KB
testcase_02 AC 297 ms
51,448 KB
testcase_03 AC 291 ms
51,356 KB
testcase_04 AC 295 ms
51,388 KB
testcase_05 AC 292 ms
51,360 KB
testcase_06 AC 295 ms
51,308 KB
testcase_07 AC 301 ms
51,232 KB
testcase_08 AC 301 ms
51,452 KB
testcase_09 AC 292 ms
51,480 KB
testcase_10 AC 303 ms
51,512 KB
testcase_11 AC 310 ms
51,348 KB
testcase_12 AC 301 ms
51,520 KB
testcase_13 AC 300 ms
51,192 KB
testcase_14 AC 305 ms
51,312 KB
testcase_15 AC 292 ms
51,324 KB
testcase_16 AC 294 ms
51,336 KB
testcase_17 AC 305 ms
51,524 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