結果

問題 No.1469 programing
ユーザー face4face4
提出日時 2021-04-10 12:30:07
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 188 bytes
コンパイル時間 10,762 ms
コンパイル使用メモリ 429,828 KB
実行使用メモリ 92,204 KB
最終ジャッジ日時 2024-06-26 01:44:37
合計ジャッジ時間 26,494 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
57,664 KB
testcase_01 AC 291 ms
92,204 KB
testcase_02 AC 290 ms
54,076 KB
testcase_03 AC 298 ms
54,136 KB
testcase_04 AC 323 ms
54,252 KB
testcase_05 AC 327 ms
54,448 KB
testcase_06 AC 322 ms
54,300 KB
testcase_07 AC 330 ms
54,496 KB
testcase_08 AC 721 ms
67,852 KB
testcase_09 AC 793 ms
70,064 KB
testcase_10 AC 780 ms
67,708 KB
testcase_11 AC 984 ms
76,072 KB
testcase_12 AC 903 ms
71,916 KB
testcase_13 AC 288 ms
54,152 KB
testcase_14 AC 1,114 ms
80,140 KB
testcase_15 AC 878 ms
71,916 KB
testcase_16 AC 1,038 ms
78,164 KB
testcase_17 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val s = readLine()!!.toCharArray()
    var bef : Char = ' '
    for(c in s){
        if(c != bef){
            print(c)
            bef = c
        }
    }
    println()
}
0