結果

問題 No.581 XOR
ユーザー minokasagominokasago
提出日時 2019-11-01 09:24:17
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 13,461 ms
コンパイル使用メモリ 409,360 KB
実行使用メモリ 53,000 KB
最終ジャッジ日時 2023-10-13 00:36:06
合計ジャッジ時間 17,696 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
52,872 KB
testcase_01 AC 291 ms
52,712 KB
testcase_02 AC 290 ms
52,840 KB
testcase_03 AC 291 ms
52,728 KB
testcase_04 AC 288 ms
52,900 KB
testcase_05 AC 289 ms
53,000 KB
testcase_06 AC 294 ms
52,852 KB
testcase_07 AC 295 ms
52,728 KB
testcase_08 AC 290 ms
52,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main()
{
    val (a, c) = readLine()!!.split(" ").map(String::toLong)

    val b = a xor c

    println("${b}")
}
0