結果

問題 No.9010 うるう年判定
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-10-06 16:48:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 10,158 ms
コンパイル使用メモリ 430,960 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-06-22 01:15:58
合計ジャッジ時間 16,886 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 247 ms
54,160 KB
testcase_01 AC 246 ms
54,208 KB
testcase_02 AC 242 ms
54,200 KB
testcase_03 AC 245 ms
54,120 KB
testcase_04 AC 247 ms
54,104 KB
testcase_05 AC 248 ms
54,164 KB
testcase_06 AC 249 ms
54,120 KB
testcase_07 AC 250 ms
54,280 KB
testcase_08 AC 247 ms
54,356 KB
testcase_09 AC 244 ms
54,268 KB
testcase_10 AC 248 ms
54,176 KB
testcase_11 AC 246 ms
54,276 KB
testcase_12 AC 249 ms
54,320 KB
testcase_13 AC 252 ms
54,392 KB
testcase_14 AC 242 ms
54,332 KB
testcase_15 AC 247 ms
54,064 KB
testcase_16 AC 247 ms
54,180 KB
testcase_17 AC 242 ms
54,060 KB
testcase_18 AC 245 ms
54,296 KB
testcase_19 AC 245 ms
54,288 KB
testcase_20 AC 243 ms
54,248 KB
testcase_21 AC 238 ms
54,364 KB
testcase_22 AC 238 ms
54,316 KB
testcase_23 AC 243 ms
54,184 KB
testcase_24 AC 250 ms
54,316 KB
testcase_25 AC 246 ms
54,296 KB
testcase_26 AC 248 ms
54,180 KB
testcase_27 AC 246 ms
54,188 KB
testcase_28 AC 240 ms
54,272 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