結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー 箱星箱星
提出日時 2020-10-09 22:58:24
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 1,120 bytes
コンパイル時間 14,249 ms
コンパイル使用メモリ 435,004 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-07-20 13:41:20
合計ジャッジ時間 21,484 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 274 ms
49,676 KB
testcase_01 AC 279 ms
49,808 KB
testcase_02 AC 298 ms
50,836 KB
testcase_03 AC 285 ms
50,728 KB
testcase_04 AC 297 ms
50,732 KB
testcase_05 AC 479 ms
84,072 KB
testcase_06 AC 494 ms
84,352 KB
testcase_07 AC 490 ms
83,380 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.io.PrintWriter
import java.util.*

fun PrintWriter.solve(sc: FastScanner) {
    val t = sc.nextInt()
    for (_i in 0 until t) {
        val n = sc.nextInt()
        val p = Array(2 * n) { 0 }
        for (i in 0 until n) {
            p[i] = 2 * i
            p[i + n] = 2 * i + 1
        }
        var v = 1
        var count = 0
        do {
            v = p[v]
            count++
        } while (v != 1)
        println(count)
    }
}

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

class FastScanner(s: InputStream) {
    private var st = StringTokenizer("")
    private val br = BufferedReader(InputStreamReader(s))

    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()
    fun ready() = br.ready()
}
0