結果

問題 No.1461 しあはせや歩みゆく?
ユーザー face4face4
提出日時 2021-04-06 22:26:37
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 92 bytes
コンパイル時間 12,994 ms
コンパイル使用メモリ 427,072 KB
実行使用メモリ 49,972 KB
最終ジャッジ日時 2024-06-11 20:33:23
合計ジャッジ時間 22,641 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
49,772 KB
testcase_01 AC 297 ms
49,880 KB
testcase_02 AC 294 ms
49,896 KB
testcase_03 AC 290 ms
49,900 KB
testcase_04 AC 286 ms
49,696 KB
testcase_05 AC 286 ms
49,704 KB
testcase_06 AC 295 ms
49,724 KB
testcase_07 AC 293 ms
49,828 KB
testcase_08 AC 292 ms
49,972 KB
testcase_09 AC 293 ms
49,652 KB
testcase_10 AC 291 ms
49,864 KB
testcase_11 AC 289 ms
49,808 KB
testcase_12 AC 293 ms
49,708 KB
testcase_13 AC 298 ms
49,892 KB
testcase_14 AC 297 ms
49,756 KB
testcase_15 AC 289 ms
49,752 KB
testcase_16 AC 293 ms
49,904 KB
testcase_17 AC 292 ms
49,636 KB
testcase_18 AC 287 ms
49,864 KB
testcase_19 AC 294 ms
49,872 KB
testcase_20 AC 292 ms
49,812 KB
testcase_21 AC 291 ms
49,700 KB
testcase_22 AC 291 ms
49,960 KB
testcase_23 AC 298 ms
49,696 KB
testcase_24 AC 293 ms
49,920 KB
testcase_25 AC 292 ms
49,872 KB
testcase_26 AC 296 ms
49,644 KB
testcase_27 AC 293 ms
49,836 KB
testcase_28 AC 291 ms
49,732 KB
testcase_29 AC 301 ms
49,804 KB
testcase_30 AC 289 ms
49,964 KB
testcase_31 AC 291 ms
49,748 KB
testcase_32 AC 286 ms
49,756 KB
testcase_33 AC 289 ms
49,748 KB
testcase_34 AC 294 ms
49,796 KB
testcase_35 AC 289 ms
49,824 KB
testcase_36 AC 299 ms
49,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val n : Long = readLine()!!.toLong()
    println(if(n<4) n else (n-3)*5+3)
}
0