結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー face4face4
提出日時 2021-04-13 10:14:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 398 ms / 1,000 ms
コード長 240 bytes
コンパイル時間 13,402 ms
コンパイル使用メモリ 435,260 KB
実行使用メモリ 54,140 KB
最終ジャッジ日時 2024-06-29 04:56:35
合計ジャッジ時間 25,583 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 247 ms
49,912 KB
testcase_01 AC 254 ms
49,848 KB
testcase_02 AC 249 ms
49,720 KB
testcase_03 AC 246 ms
49,848 KB
testcase_04 AC 250 ms
49,700 KB
testcase_05 AC 242 ms
49,796 KB
testcase_06 AC 247 ms
49,876 KB
testcase_07 AC 256 ms
49,888 KB
testcase_08 AC 245 ms
49,856 KB
testcase_09 AC 257 ms
49,876 KB
testcase_10 AC 241 ms
49,728 KB
testcase_11 AC 242 ms
49,888 KB
testcase_12 AC 256 ms
49,912 KB
testcase_13 AC 368 ms
54,020 KB
testcase_14 AC 360 ms
53,968 KB
testcase_15 AC 289 ms
50,240 KB
testcase_16 AC 356 ms
52,848 KB
testcase_17 AC 377 ms
53,776 KB
testcase_18 AC 389 ms
53,296 KB
testcase_19 AC 385 ms
54,088 KB
testcase_20 AC 386 ms
53,776 KB
testcase_21 AC 368 ms
53,196 KB
testcase_22 AC 378 ms
54,020 KB
testcase_23 AC 372 ms
53,932 KB
testcase_24 AC 374 ms
53,984 KB
testcase_25 AC 387 ms
53,920 KB
testcase_26 AC 376 ms
54,052 KB
testcase_27 AC 363 ms
54,140 KB
testcase_28 AC 376 ms
54,020 KB
testcase_29 AC 377 ms
54,028 KB
testcase_30 AC 376 ms
53,992 KB
testcase_31 AC 398 ms
54,120 KB
testcase_32 AC 383 ms
53,940 KB
testcase_33 AC 366 ms
54,072 KB
testcase_34 AC 359 ms
53,976 KB
testcase_35 AC 245 ms
49,812 KB
testcase_36 AC 253 ms
49,908 KB
testcase_37 AC 253 ms
49,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val s = readLine()!!
    if(s.count{it==s[0]} > 1){
        for(i in s.indices){
            if(s[i] != s[0]){
                println("${i+1} ${s[i]}")
            }
        }
    }else{
        println("1 ${s[0]}")
    }
}
0