結果

問題 No.2041 E-mail Address
ユーザー 箱星箱星
提出日時 2022-04-24 22:41:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 10,185 ms
コンパイル使用メモリ 431,344 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-09-20 03:00:13
合計ジャッジ時間 14,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 263 ms
54,188 KB
testcase_01 AC 273 ms
54,160 KB
testcase_02 AC 263 ms
54,180 KB
testcase_03 AC 265 ms
54,192 KB
testcase_04 AC 267 ms
53,980 KB
testcase_05 AC 262 ms
54,088 KB
testcase_06 AC 267 ms
54,312 KB
testcase_07 AC 306 ms
54,460 KB
testcase_08 AC 299 ms
54,368 KB
testcase_09 AC 301 ms
54,452 KB
testcase_10 AC 304 ms
54,476 KB
testcase_11 AC 304 ms
54,184 KB
testcase_12 AC 297 ms
54,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val s = readln()
    var skip = false
    for (c in s) {
        if (c == '(') {
            skip = true
        }
        if (c == ')') {
            skip = false
            print("@")
            continue
        }
        if (!skip) {
            print(c)
        }
    }
    println()
}
0