結果

問題 No.581 XOR
ユーザー バカらっくバカらっく
提出日時 2022-02-04 13:46:01
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 9,802 ms
コンパイル使用メモリ 436,664 KB
実行使用メモリ 51,828 KB
最終ジャッジ日時 2024-06-11 10:11:38
合計ジャッジ時間 13,000 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 262 ms
51,704 KB
testcase_01 AC 265 ms
51,608 KB
testcase_02 AC 271 ms
51,620 KB
testcase_03 AC 267 ms
51,808 KB
testcase_04 AC 266 ms
51,700 KB
testcase_05 AC 274 ms
51,828 KB
testcase_06 AC 266 ms
51,772 KB
testcase_07 AC 271 ms
51,696 KB
testcase_08 AC 267 ms
51,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val (a,c) = readLine()!!.split(" ").map { it.toLong() }
    var ans = 0L
    for(i in 0..63) {
        val n = (1L shl i)
        if(a and n == 0L) {
            if(c and n != 0L) {
                ans += n
            }
        } else if(c and n == 0L) {
            ans += n
        }
    }
    println(ans)
}
0