結果

問題 No.1469 programing
ユーザー face4face4
提出日時 2021-04-10 12:49:34
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 640 ms / 3,000 ms
コード長 213 bytes
コンパイル時間 10,672 ms
コンパイル使用メモリ 433,072 KB
実行使用メモリ 84,492 KB
最終ジャッジ日時 2024-06-26 02:05:34
合計ジャッジ時間 18,770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
50,888 KB
testcase_01 AC 298 ms
50,844 KB
testcase_02 AC 302 ms
50,992 KB
testcase_03 AC 298 ms
50,872 KB
testcase_04 AC 298 ms
50,988 KB
testcase_05 AC 300 ms
50,976 KB
testcase_06 AC 310 ms
50,944 KB
testcase_07 AC 305 ms
50,932 KB
testcase_08 AC 427 ms
54,188 KB
testcase_09 AC 428 ms
54,484 KB
testcase_10 AC 421 ms
54,492 KB
testcase_11 AC 448 ms
55,304 KB
testcase_12 AC 442 ms
55,156 KB
testcase_13 AC 281 ms
49,536 KB
testcase_14 AC 449 ms
57,000 KB
testcase_15 AC 449 ms
56,164 KB
testcase_16 AC 459 ms
56,676 KB
testcase_17 AC 640 ms
84,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val s = readLine()!!.toCharArray()
    val sb = StringBuilder()
    sb.append(s[0])
    for(i in 1 until s.size){
        if(sb.last() != s[i])   sb.append(s[i])
    }
    println(sb.toString())
}
0