結果

問題 No.2827 Enter User Name to Play
ユーザー ImTabooImTaboo
提出日時 2024-12-08 14:45:44
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 14,825 ms
コンパイル使用メモリ 436,824 KB
実行使用メモリ 56,112 KB
最終ジャッジ日時 2024-12-08 14:46:09
合計ジャッジ時間 23,179 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
55,916 KB
testcase_01 AC 353 ms
55,800 KB
testcase_02 AC 325 ms
56,020 KB
testcase_03 AC 319 ms
55,956 KB
testcase_04 AC 322 ms
55,792 KB
testcase_05 AC 353 ms
55,844 KB
testcase_06 AC 355 ms
55,604 KB
testcase_07 AC 340 ms
56,008 KB
testcase_08 AC 335 ms
56,112 KB
testcase_09 AC 331 ms
55,776 KB
testcase_10 AC 330 ms
55,608 KB
testcase_11 AC 331 ms
55,720 KB
testcase_12 AC 353 ms
55,992 KB
testcase_13 AC 326 ms
56,040 KB
testcase_14 AC 321 ms
55,932 KB
testcase_15 AC 326 ms
55,960 KB
testcase_16 AC 323 ms
55,888 KB
testcase_17 AC 311 ms
55,592 KB
testcase_18 AC 333 ms
55,776 KB
testcase_19 AC 323 ms
55,908 KB
testcase_20 AC 327 ms
55,780 KB
testcase_21 AC 326 ms
55,936 KB
testcase_22 AC 326 ms
55,780 KB
testcase_23 AC 354 ms
55,800 KB
testcase_24 AC 320 ms
55,892 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:13: warning: variable 'j' initializer is redundant
    var j = 0
            ^

ソースコード

diff #

fun main(){
    val n = readln().toInt()
    val s = readln().split("")


    var j = 0
    val p = readln().split(" ").map { it.toInt() }
    for (i in 0..<n){
        j = p[i]
        print(s[j])

    }
}
0