結果

問題 No.1198 お菓子配り-1
ユーザー yudedakoyudedako
提出日時 2020-08-29 13:59:50
言語 Kotlin
(2.1.0)
結果
WA  
実行時間 -
コード長 100 bytes
コンパイル時間 10,329 ms
コンパイル使用メモリ 421,036 KB
実行使用メモリ 56,904 KB
最終ジャッジ日時 2024-11-14 06:32:39
合計ジャッジ時間 16,842 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
56,728 KB
testcase_01 AC 296 ms
56,788 KB
testcase_02 AC 296 ms
56,880 KB
testcase_03 AC 302 ms
56,780 KB
testcase_04 AC 295 ms
56,784 KB
testcase_05 AC 297 ms
56,832 KB
testcase_06 AC 298 ms
56,900 KB
testcase_07 AC 297 ms
56,904 KB
testcase_08 AC 298 ms
56,832 KB
testcase_09 AC 302 ms
56,840 KB
testcase_10 AC 297 ms
56,792 KB
testcase_11 AC 307 ms
56,788 KB
testcase_12 AC 308 ms
56,728 KB
testcase_13 AC 297 ms
56,896 KB
testcase_14 AC 298 ms
56,740 KB
testcase_15 AC 299 ms
56,724 KB
testcase_16 WA -
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #


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