結果

問題 No.581 XOR
ユーザー komkomhkomkomh
提出日時 2019-06-10 15:29:11
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 13,540 ms
コンパイル使用メモリ 431,480 KB
実行使用メモリ 57,068 KB
最終ジャッジ日時 2024-11-20 18:54:00
合計ジャッジ時間 15,807 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
57,004 KB
testcase_01 AC 327 ms
57,008 KB
testcase_02 AC 327 ms
56,984 KB
testcase_03 AC 331 ms
57,068 KB
testcase_04 AC 333 ms
57,012 KB
testcase_05 AC 328 ms
57,000 KB
testcase_06 AC 323 ms
56,988 KB
testcase_07 AC 326 ms
57,012 KB
testcase_08 AC 328 ms
57,000 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