結果

問題 No.380 悪の台本
ユーザー firiexpfiriexp
提出日時 2020-01-01 19:38:53
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 630 ms / 1,000 ms
コード長 1,153 bytes
コンパイル時間 17,991 ms
コンパイル使用メモリ 450,324 KB
実行使用メモリ 63,468 KB
最終ジャッジ日時 2024-11-22 16:56:30
合計ジャッジ時間 18,536 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 268 ms
51,188 KB
testcase_01 AC 277 ms
51,076 KB
testcase_02 AC 277 ms
51,236 KB
testcase_03 AC 274 ms
51,036 KB
testcase_04 AC 380 ms
52,612 KB
testcase_05 AC 480 ms
58,308 KB
testcase_06 AC 480 ms
57,356 KB
testcase_07 AC 630 ms
63,468 KB
testcase_08 AC 361 ms
52,144 KB
testcase_09 AC 380 ms
57,388 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:10:18: warning: 'toLowerCase(): String' is deprecated. Use lowercase() instead.
    var s = line.toLowerCase();
                 ^
Main.kt:30:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

@JvmField val INPUT = System.`in`
@JvmField val OUTPUT = System.out

@JvmField val _reader = INPUT.bufferedReader()
fun readLine(): String? = _reader.readLine()
fun readL() = _reader.readLine()!!

fun solve(line: String): Boolean {
    if(line.isEmpty()) return false
    var s = line.toLowerCase();
    for (i in 0 until 3){
        if(s.isEmpty()) return false
        if(!s.last().isLetterOrDigit()) s = s.dropLast(1)
    }
    if(s.isEmpty()) return false
    if (line.startsWith("digi ")){
        return s.endsWith("nyo") && s != "digi"
    }else if (line.startsWith("petit ")){
        return s.endsWith("nyu") && s != "nyu"
    }else if(line.startsWith("rabi ")){
        return s.length >= 5 && s.subSequence(5, s.length).any { it.isLetterOrDigit()}
    }else if(line.startsWith("gema ")){
        return s.endsWith("gema") && s != "gema"
    }else if(line.startsWith("piyo "))
        return s.endsWith("pyo") && s != "pyo"
    else return false
}


fun main(args: Array<String>) {
    var s : String?
    while (true) {
        s = readLine()
        if(s == null) break
        println( if (solve(s)) "CORRECT (maybe)" else "WRONG!")
    }
}
0