結果

問題 No.581 XOR
ユーザー komkomhkomkomh
提出日時 2019-06-10 15:29:11
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 12,960 ms
コンパイル使用メモリ 432,668 KB
実行使用メモリ 57,116 KB
最終ジャッジ日時 2024-04-30 21:01:15
合計ジャッジ時間 17,011 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
56,964 KB
testcase_01 AC 337 ms
56,980 KB
testcase_02 AC 331 ms
57,116 KB
testcase_03 AC 340 ms
57,016 KB
testcase_04 AC 331 ms
57,052 KB
testcase_05 AC 333 ms
57,080 KB
testcase_06 AC 333 ms
57,096 KB
testcase_07 AC 340 ms
57,084 KB
testcase_08 AC 341 ms
57,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val (A, C) = readLine()!!.split(" ").map(String::toLong)
    val A2: String = A.toString(2)
    val C2: String = C.toString(2)

    val maxLength = when (A2.length > C2.length) {
        true -> A2.length
        false -> C2.length
    }

    val padA2 = A2.padStart(maxLength, '0')
    val padC2 = C2.padStart(maxLength, '0')

    val chars: CharArray = (0 until maxLength).map {
        val a = padA2[it]
        val c = padC2[it]
        when (a == c) {
            true -> '0'
            false -> '1'
        }
    }.toCharArray()

    val ans:Long = String(chars).toLong(2)
    println(ans)
}
0