結果

問題 No.1674 Introduction to XOR
ユーザー GatanityHouseGatanityHouse
提出日時 2021-10-17 02:10:57
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 294 ms / 1,000 ms
コード長 288 bytes
コンパイル時間 9,396 ms
コンパイル使用メモリ 432,424 KB
実行使用メモリ 57,244 KB
最終ジャッジ日時 2024-09-17 19:35:49
合計ジャッジ時間 16,917 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 264 ms
56,872 KB
testcase_01 AC 262 ms
57,140 KB
testcase_02 AC 259 ms
56,796 KB
testcase_03 AC 277 ms
56,904 KB
testcase_04 AC 277 ms
56,916 KB
testcase_05 AC 266 ms
57,052 KB
testcase_06 AC 261 ms
57,020 KB
testcase_07 AC 264 ms
56,816 KB
testcase_08 AC 262 ms
56,904 KB
testcase_09 AC 268 ms
56,916 KB
testcase_10 AC 263 ms
57,000 KB
testcase_11 AC 266 ms
56,912 KB
testcase_12 AC 257 ms
57,064 KB
testcase_13 AC 265 ms
57,096 KB
testcase_14 AC 294 ms
57,016 KB
testcase_15 AC 277 ms
57,004 KB
testcase_16 AC 256 ms
56,956 KB
testcase_17 AC 275 ms
56,992 KB
testcase_18 AC 280 ms
56,960 KB
testcase_19 AC 276 ms
57,040 KB
testcase_20 AC 280 ms
57,244 KB
testcase_21 AC 287 ms
56,920 KB
testcase_22 AC 272 ms
56,972 KB
testcase_23 AC 271 ms
57,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger

fun main() {
    readLine()
    val a = readLine()!!.split(" ").map { it.toBigInteger() }

    for (i in 0..60) {
        val x = BigInteger.TWO.pow(i)
        if (a.all { (it + x) == it.xor(x) }) {
            println(x)
            return
        }
    }
}
0