結果

問題 No.1198 お菓子配り-1
ユーザー yudedakoyudedako
提出日時 2020-08-29 14:01:53
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 12,261 ms
コンパイル使用メモリ 428,312 KB
実行使用メモリ 51,288 KB
最終ジャッジ日時 2024-11-16 09:36:46
合計ジャッジ時間 18,911 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
51,088 KB
testcase_01 AC 306 ms
51,184 KB
testcase_02 AC 304 ms
51,112 KB
testcase_03 AC 305 ms
51,060 KB
testcase_04 AC 305 ms
50,908 KB
testcase_05 AC 306 ms
51,072 KB
testcase_06 AC 306 ms
51,092 KB
testcase_07 AC 304 ms
50,924 KB
testcase_08 AC 302 ms
51,088 KB
testcase_09 AC 304 ms
51,160 KB
testcase_10 AC 306 ms
51,288 KB
testcase_11 AC 307 ms
51,192 KB
testcase_12 AC 301 ms
50,860 KB
testcase_13 AC 303 ms
50,760 KB
testcase_14 AC 303 ms
50,976 KB
testcase_15 AC 302 ms
51,020 KB
testcase_16 AC 304 ms
50,768 KB
testcase_17 AC 303 ms
51,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


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