結果

問題 No.1841 Long Long
ユーザー 箱星箱星
提出日時 2022-02-19 02:34:01
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 9,399 ms
コンパイル使用メモリ 438,436 KB
実行使用メモリ 51,548 KB
最終ジャッジ日時 2024-06-29 10:12:53
合計ジャッジ時間 14,581 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 258 ms
51,188 KB
testcase_01 AC 257 ms
51,304 KB
testcase_02 AC 257 ms
51,012 KB
testcase_03 AC 311 ms
51,480 KB
testcase_04 AC 255 ms
51,152 KB
testcase_05 AC 259 ms
51,284 KB
testcase_06 AC 259 ms
51,328 KB
testcase_07 AC 270 ms
51,300 KB
testcase_08 AC 272 ms
51,548 KB
testcase_09 AC 252 ms
51,292 KB
testcase_10 AC 254 ms
51,432 KB
testcase_11 AC 274 ms
51,112 KB
testcase_12 AC 268 ms
51,088 KB
testcase_13 AC 282 ms
51,184 KB
testcase_14 AC 264 ms
51,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// 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