結果

問題 No.9010 うるう年判定
ユーザー matsumomatsumo
提出日時 2020-11-14 22:38:54
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 1,147 bytes
コンパイル時間 14,370 ms
コンパイル使用メモリ 441,884 KB
実行使用メモリ 49,916 KB
最終ジャッジ日時 2024-07-23 00:53:08
合計ジャッジ時間 24,329 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 281 ms
49,820 KB
testcase_01 AC 279 ms
49,916 KB
testcase_02 AC 285 ms
49,596 KB
testcase_03 AC 283 ms
49,584 KB
testcase_04 AC 282 ms
49,588 KB
testcase_05 AC 287 ms
49,576 KB
testcase_06 AC 281 ms
49,680 KB
testcase_07 AC 286 ms
49,496 KB
testcase_08 AC 288 ms
49,816 KB
testcase_09 AC 287 ms
49,768 KB
testcase_10 AC 283 ms
49,692 KB
testcase_11 AC 287 ms
49,624 KB
testcase_12 AC 290 ms
49,640 KB
testcase_13 AC 284 ms
49,808 KB
testcase_14 AC 282 ms
49,900 KB
testcase_15 AC 282 ms
49,564 KB
testcase_16 AC 285 ms
49,536 KB
testcase_17 AC 284 ms
49,680 KB
testcase_18 AC 289 ms
49,596 KB
testcase_19 AC 283 ms
49,784 KB
testcase_20 AC 282 ms
49,512 KB
testcase_21 AC 291 ms
49,892 KB
testcase_22 AC 289 ms
49,680 KB
testcase_23 AC 284 ms
49,764 KB
testcase_24 AC 285 ms
49,776 KB
testcase_25 AC 291 ms
49,624 KB
testcase_26 AC 291 ms
49,904 KB
testcase_27 AC 283 ms
49,508 KB
testcase_28 AC 287 ms
49,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStreamReader
import java.io.PrintWriter

val br = BufferedReader(InputStreamReader(System.`in`))
val out = PrintWriter(System.out)

fun main() {
    br.use {
        out.use {
//        repeat(readInteger()) { solve() }
            solve()
            out.flush()
        }
    }
}

fun solve() {
    val n = readInteger()

//    ・西暦年が4で割り切れる年はうるう年
//    ・ただし、西暦年が100で割り切れる年は平年
//    ・ただし、西暦年が400で割り切れる年はうるう年
    val ans = if (n % 400 == 0) {
        "Yes"
    } else {
        if (n % 100 == 0) {
            "No"
        } else {
            if (n % 4 == 0) "Yes" else "No"
        }
    }
    out.println(ans)
}

fun readInteger() = Integer.parseInt(br.readLine())
fun readLong() = java.lang.Long.parseLong(br.readLine())
fun readStringList() = br.readLine()!!.split(' ')
fun readIntegerList() = readStringList().map(Integer::parseInt)
fun readLongList() = readStringList().map(java.lang.Long::parseLong)
fun readDoubleList() = readStringList().map(java.lang.Double::parseDouble)
0