結果

問題 No.581 XOR
ユーザー minokasagominokasago
提出日時 2019-11-01 09:24:17
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 12,544 ms
コンパイル使用メモリ 430,044 KB
実行使用メモリ 51,664 KB
最終ジャッジ日時 2024-09-14 22:32:04
合計ジャッジ時間 16,463 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
51,664 KB
testcase_01 AC 311 ms
51,648 KB
testcase_02 AC 315 ms
51,640 KB
testcase_03 AC 314 ms
51,576 KB
testcase_04 AC 314 ms
51,636 KB
testcase_05 AC 314 ms
51,444 KB
testcase_06 AC 312 ms
51,664 KB
testcase_07 AC 316 ms
51,504 KB
testcase_08 AC 314 ms
51,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    val b = a xor c

    println("${b}")
}
0