結果

問題 No.1461 しあはせや歩みゆく?
ユーザー rhincodon66rhincodon66
提出日時 2021-04-02 21:26:50
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 12,058 ms
コンパイル使用メモリ 421,804 KB
実行使用メモリ 49,844 KB
最終ジャッジ日時 2024-06-06 06:07:26
合計ジャッジ時間 24,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
49,460 KB
testcase_01 AC 286 ms
49,456 KB
testcase_02 AC 283 ms
49,576 KB
testcase_03 AC 286 ms
49,568 KB
testcase_04 AC 284 ms
49,744 KB
testcase_05 AC 284 ms
49,616 KB
testcase_06 AC 283 ms
49,536 KB
testcase_07 AC 285 ms
49,340 KB
testcase_08 AC 290 ms
49,676 KB
testcase_09 AC 289 ms
49,432 KB
testcase_10 AC 285 ms
49,700 KB
testcase_11 AC 289 ms
49,556 KB
testcase_12 AC 284 ms
49,632 KB
testcase_13 AC 288 ms
49,560 KB
testcase_14 AC 287 ms
49,436 KB
testcase_15 AC 282 ms
49,460 KB
testcase_16 AC 282 ms
49,456 KB
testcase_17 AC 285 ms
49,576 KB
testcase_18 AC 288 ms
49,452 KB
testcase_19 AC 291 ms
49,556 KB
testcase_20 AC 287 ms
49,740 KB
testcase_21 AC 287 ms
49,484 KB
testcase_22 AC 286 ms
49,732 KB
testcase_23 AC 284 ms
49,516 KB
testcase_24 AC 291 ms
49,568 KB
testcase_25 AC 288 ms
49,660 KB
testcase_26 AC 284 ms
49,472 KB
testcase_27 AC 293 ms
49,844 KB
testcase_28 AC 289 ms
49,660 KB
testcase_29 AC 288 ms
49,744 KB
testcase_30 AC 288 ms
49,520 KB
testcase_31 AC 287 ms
49,460 KB
testcase_32 AC 284 ms
49,744 KB
testcase_33 AC 284 ms
49,456 KB
testcase_34 AC 287 ms
49,496 KB
testcase_35 AC 287 ms
49,452 KB
testcase_36 AC 287 ms
49,448 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

import java.util.*
import javax.swing.plaf.SeparatorUI
import kotlin.math.ceil
import java.util.Queue as Queue1

fun main(args:Array<String>) {
    solve()
}

fun solve(){
    val n = readLine()!!.toLong()
    if(n <= 3L) println(n) else println((n - 3) * 5 + 3)
}

0