結果

問題 No.1616 Joke
ユーザー 箱星箱星
提出日時 2021-07-22 21:21:54
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 12,044 ms
コンパイル使用メモリ 421,696 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-07-17 16:07:45
合計ジャッジ時間 17,857 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
54,336 KB
testcase_01 AC 295 ms
54,308 KB
testcase_02 AC 293 ms
54,232 KB
testcase_03 AC 294 ms
54,052 KB
testcase_04 AC 284 ms
54,208 KB
testcase_05 AC 294 ms
54,180 KB
testcase_06 AC 294 ms
54,144 KB
testcase_07 AC 294 ms
54,040 KB
testcase_08 AC 294 ms
54,288 KB
testcase_09 AC 294 ms
54,328 KB
testcase_10 AC 291 ms
54,360 KB
testcase_11 AC 290 ms
54,128 KB
testcase_12 AC 291 ms
54,252 KB
testcase_13 AC 295 ms
54,252 KB
testcase_14 AC 286 ms
54,364 KB
testcase_15 AC 289 ms
54,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    println(n)
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0