結果

問題 No.1298 OR XOR
ユーザー 箱星箱星
提出日時 2020-11-27 21:29:25
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 1,084 bytes
コンパイル時間 14,701 ms
コンパイル使用メモリ 439,064 KB
実行使用メモリ 55,480 KB
最終ジャッジ日時 2024-07-23 22:08:06
合計ジャッジ時間 21,815 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
55,328 KB
testcase_01 AC 319 ms
54,252 KB
testcase_02 AC 326 ms
54,236 KB
testcase_03 AC 334 ms
54,232 KB
testcase_04 AC 323 ms
54,380 KB
testcase_05 AC 335 ms
54,372 KB
testcase_06 AC 331 ms
55,268 KB
testcase_07 AC 329 ms
55,168 KB
testcase_08 AC 331 ms
55,312 KB
testcase_09 AC 324 ms
55,164 KB
testcase_10 AC 328 ms
55,032 KB
testcase_11 AC 328 ms
55,292 KB
testcase_12 AC 327 ms
55,480 KB
testcase_13 AC 331 ms
55,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() = with(FastScanner(System.`in`)) {
    var n = nextInt()
    val ans = arrayOf(0, 0, 0)
    val lst = listOf(1, 1, 0)
    var count = 0
    var pow = 1
    while (n > 0) {
        if (n % 2 != 0) {
            for (i in 0 until 3) {
                ans[i] += pow * lst[(count + i) % 3]
            }
            count++
        }
        n /= 2
        pow *= 2
    }
    if (ans.min() == 0) {
        println("-1 -1 -1")
    } else {
        println(ans.joinToString(" "))
    }
}

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

class FastScanner(s: InputStream) {
    private var st = StringTokenizer("")
    private val br = s.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()
}
0