結果

問題 No.581 XOR
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-09 15:06:22
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 86 bytes
コンパイル時間 10,101 ms
コンパイル使用メモリ 418,728 KB
実行使用メモリ 56,800 KB
最終ジャッジ日時 2024-09-15 04:29:42
合計ジャッジ時間 13,944 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
56,500 KB
testcase_01 AC 307 ms
56,476 KB
testcase_02 AC 311 ms
56,780 KB
testcase_03 AC 310 ms
56,460 KB
testcase_04 AC 316 ms
56,708 KB
testcase_05 AC 315 ms
56,720 KB
testcase_06 AC 310 ms
56,604 KB
testcase_07 AC 313 ms
56,800 KB
testcase_08 AC 319 ms
56,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){println(readLine()!!.split(" ").map{it.toLong()}.reduce{acc,e->acc xor e})}
0