結果

問題 No.1198 お菓子配り-1
ユーザー rutilicusrutilicus
提出日時 2021-02-11 18:59:35
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 11,209 ms
コンパイル使用メモリ 429,176 KB
実行使用メモリ 56,964 KB
最終ジャッジ日時 2024-07-18 07:08:08
合計ジャッジ時間 16,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 268 ms
56,696 KB
testcase_01 AC 267 ms
56,712 KB
testcase_02 AC 267 ms
56,760 KB
testcase_03 AC 259 ms
56,964 KB
testcase_04 AC 267 ms
56,700 KB
testcase_05 AC 267 ms
56,844 KB
testcase_06 AC 261 ms
56,820 KB
testcase_07 AC 265 ms
56,876 KB
testcase_08 AC 261 ms
56,880 KB
testcase_09 AC 268 ms
56,708 KB
testcase_10 AC 277 ms
56,808 KB
testcase_11 AC 266 ms
56,744 KB
testcase_12 AC 265 ms
56,884 KB
testcase_13 AC 264 ms
56,740 KB
testcase_14 AC 272 ms
56,856 KB
testcase_15 AC 261 ms
56,712 KB
testcase_16 AC 253 ms
54,140 KB
testcase_17 AC 253 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val n = readInputLine()

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

    print(builder.toString())
}

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