結果

問題 No.104 国道
ユーザー yo-kondoyo-kondo
提出日時 2018-03-25 16:59:16
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 300 ms / 5,000 ms
コード長 533 bytes
コンパイル時間 12,317 ms
コンパイル使用メモリ 425,216 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-11-20 14:50:22
合計ジャッジ時間 18,149 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
54,076 KB
testcase_01 AC 297 ms
54,224 KB
testcase_02 AC 295 ms
54,264 KB
testcase_03 AC 297 ms
54,296 KB
testcase_04 AC 294 ms
54,168 KB
testcase_05 AC 290 ms
54,140 KB
testcase_06 AC 299 ms
54,248 KB
testcase_07 AC 296 ms
54,252 KB
testcase_08 AC 293 ms
54,264 KB
testcase_09 AC 293 ms
54,376 KB
testcase_10 AC 296 ms
54,088 KB
testcase_11 AC 296 ms
54,172 KB
testcase_12 AC 300 ms
54,260 KB
testcase_13 AC 293 ms
54,268 KB
testcase_14 AC 295 ms
54,188 KB
testcase_15 AC 294 ms
54,244 KB
testcase_16 AC 294 ms
54,252 KB
testcase_17 AC 298 ms
54,324 KB
testcase_18 AC 291 ms
54,296 KB
testcase_19 AC 294 ms
54,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package yukicoder.no104

/**
 * エントリポイント
 */
fun main(args: Array<String>) {
    val in1 = readLine()
    print(nationalHighway(in1))
}

/**
 * いま何号線を歩いているかを返します。
 */
fun nationalHighway(rightOrLeft: String?): String {
    if (rightOrLeft == null) {
        return ""
    }
    var highway = 1
    for (bend in rightOrLeft) {
        if (bend == 'L') {
            highway *= 2
        } else {
            highway = highway * 2 + 1
        }
    }
    return highway.toString()
}
0