結果

問題 No.1198 お菓子配り-1
ユーザー rutilicusrutilicus
提出日時 2021-02-11 18:56:45
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 12,035 ms
コンパイル使用メモリ 433,572 KB
実行使用メモリ 56,868 KB
最終ジャッジ日時 2024-07-18 07:05:44
合計ジャッジ時間 18,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 290 ms
56,824 KB
testcase_02 AC 291 ms
56,820 KB
testcase_03 AC 295 ms
56,728 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 298 ms
56,856 KB
testcase_08 AC 299 ms
56,684 KB
testcase_09 WA -
testcase_10 AC 298 ms
56,804 KB
testcase_11 WA -
testcase_12 AC 297 ms
56,772 KB
testcase_13 WA -
testcase_14 AC 296 ms
56,824 KB
testcase_15 AC 295 ms
56,812 KB
testcase_16 AC 290 ms
56,856 KB
testcase_17 AC 294 ms
56,832 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:13: warning: 'appendln(Int): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val n = readInputLine()

    builder.appendln(
        when(n) {
            "1" -> -1
            "4" -> -1
            else -> {
                if (n.takeLast(2).toInt() % 4 == 0) 1 else -1
            }
        }
    )

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0