結果

問題 No.2945 Namiki Secondary School
ユーザー ImTabooImTaboo
提出日時 2024-11-10 12:42:56
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 13,316 ms
コンパイル使用メモリ 429,904 KB
実行使用メモリ 49,720 KB
最終ジャッジ日時 2024-11-10 12:43:19
合計ジャッジ時間 21,641 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 249 ms
49,524 KB
testcase_01 AC 273 ms
49,480 KB
testcase_02 AC 248 ms
49,492 KB
testcase_03 AC 249 ms
49,492 KB
testcase_04 AC 254 ms
49,720 KB
testcase_05 AC 289 ms
49,588 KB
testcase_06 AC 274 ms
49,640 KB
testcase_07 AC 265 ms
49,596 KB
testcase_08 AC 254 ms
49,708 KB
testcase_09 AC 257 ms
49,516 KB
testcase_10 AC 252 ms
49,516 KB
testcase_11 AC 280 ms
49,660 KB
testcase_12 AC 258 ms
49,532 KB
testcase_13 AC 252 ms
49,512 KB
testcase_14 AC 251 ms
49,480 KB
testcase_15 AC 280 ms
49,460 KB
testcase_16 AC 264 ms
49,644 KB
testcase_17 AC 255 ms
49,512 KB
testcase_18 AC 259 ms
49,468 KB
testcase_19 AC 252 ms
49,684 KB
testcase_20 AC 282 ms
49,548 KB
testcase_21 AC 251 ms
49,636 KB
testcase_22 AC 251 ms
49,492 KB
testcase_23 AC 259 ms
49,520 KB
testcase_24 AC 284 ms
49,688 KB
testcase_25 AC 262 ms
49,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val n = readln().toInt()
    if (n > 2007){
        println("Namiki Secondary School")

    }else
         if (n in 1984..2008){
             println("Namiki High School")

         }else
             println("None")



}
0