結果

問題 No.9010 うるう年判定
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-10-06 16:49:24
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 10,462 ms
コンパイル使用メモリ 422,100 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-06-22 01:14:58
合計ジャッジ時間 20,119 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
54,220 KB
testcase_01 AC 288 ms
54,252 KB
testcase_02 AC 289 ms
54,040 KB
testcase_03 AC 288 ms
54,252 KB
testcase_04 AC 290 ms
54,040 KB
testcase_05 AC 285 ms
54,220 KB
testcase_06 AC 281 ms
54,128 KB
testcase_07 AC 277 ms
54,152 KB
testcase_08 AC 284 ms
54,360 KB
testcase_09 AC 291 ms
54,280 KB
testcase_10 AC 296 ms
54,248 KB
testcase_11 AC 290 ms
54,248 KB
testcase_12 AC 292 ms
54,040 KB
testcase_13 AC 292 ms
54,300 KB
testcase_14 AC 291 ms
54,232 KB
testcase_15 AC 293 ms
54,280 KB
testcase_16 AC 292 ms
54,036 KB
testcase_17 AC 288 ms
54,300 KB
testcase_18 AC 282 ms
54,260 KB
testcase_19 AC 285 ms
54,228 KB
testcase_20 AC 294 ms
54,240 KB
testcase_21 AC 293 ms
54,128 KB
testcase_22 AC 288 ms
54,192 KB
testcase_23 AC 296 ms
54,256 KB
testcase_24 AC 292 ms
54,232 KB
testcase_25 AC 292 ms
54,212 KB
testcase_26 AC 294 ms
54,152 KB
testcase_27 AC 288 ms
54,220 KB
testcase_28 AC 275 ms
54,124 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:14:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun judge(N: Int): Boolean {
    if (N % 400 == 0) {
        return true
    }
    if (N % 100 == 0) {
        return false
    }
    if (N % 4 == 0) {
        return true
    }
    return false
}

fun main(args: Array<String>) {
    val N = readLine()!!.toInt()

    val ans = if (judge(N)) "Yes" else "No"
    println(ans)
}

0