結果

問題 No.1298 OR XOR
ユーザー rutilicusrutilicus
提出日時 2020-12-13 15:11:58
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 10,706 ms
コンパイル使用メモリ 435,524 KB
実行使用メモリ 56,908 KB
最終ジャッジ日時 2024-09-19 23:29:12
合計ジャッジ時間 15,167 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 275 ms
56,656 KB
testcase_01 AC 273 ms
56,800 KB
testcase_02 AC 273 ms
56,764 KB
testcase_03 AC 273 ms
56,648 KB
testcase_04 AC 273 ms
56,736 KB
testcase_05 AC 272 ms
56,556 KB
testcase_06 AC 271 ms
56,864 KB
testcase_07 AC 275 ms
56,592 KB
testcase_08 AC 266 ms
56,644 KB
testcase_09 AC 269 ms
56,872 KB
testcase_10 AC 275 ms
56,576 KB
testcase_11 AC 269 ms
56,908 KB
testcase_12 AC 274 ms
56,636 KB
testcase_13 AC 272 ms
56,844 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:23:17: warning: 'appendln(String?): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
        builder.appendln("$a $b $n")
                ^
Main.kt:25:17: warning: 'appendln(String?): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
        builder.appendln("-1 -1 -1")
                ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val n = readInputLine().toInt()

    var a = 0
    var b = 0

    var addA = true

    for (i in 0 until 30) {
        if ((n shr i) and 1 == 1) {
            if (addA) {
                a = a or (1 shl i)
            } else {
                b = b or (1 shl i)
            }
            addA = !addA
        }
    }

    if (b != 0) {
        builder.appendln("$a $b $n")
    } else {
        builder.appendln("-1 -1 -1")
    }

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0