結果

問題 No.1198 お菓子配り-1
ユーザー yudedakoyudedako
提出日時 2020-08-29 14:00:46
言語 Kotlin
(2.1.0)
結果
WA  
実行時間 -
コード長 132 bytes
コンパイル時間 11,057 ms
コンパイル使用メモリ 422,080 KB
実行使用メモリ 56,992 KB
最終ジャッジ日時 2024-11-14 06:35:05
合計ジャッジ時間 17,458 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
56,864 KB
testcase_01 AC 290 ms
56,832 KB
testcase_02 AC 290 ms
56,880 KB
testcase_03 AC 294 ms
56,732 KB
testcase_04 AC 291 ms
56,852 KB
testcase_05 AC 290 ms
56,732 KB
testcase_06 AC 289 ms
56,836 KB
testcase_07 AC 289 ms
56,760 KB
testcase_08 AC 329 ms
56,796 KB
testcase_09 AC 288 ms
56,844 KB
testcase_10 AC 288 ms
56,836 KB
testcase_11 AC 290 ms
56,744 KB
testcase_12 AC 287 ms
56,724 KB
testcase_13 AC 290 ms
56,824 KB
testcase_14 AC 289 ms
56,820 KB
testcase_15 AC 290 ms
56,836 KB
testcase_16 AC 297 ms
56,992 KB
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #


fun main() {
    val str = readLine()!!
    val n = str.takeLast(2).toInt()
    println(if (str == "1" || n % 4 == 2) -1 else 1)
}
0