結果

問題 No.581 XOR
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-09 15:06:22
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 86 bytes
コンパイル時間 11,522 ms
コンパイル使用メモリ 409,180 KB
実行使用メモリ 53,076 KB
最終ジャッジ日時 2023-10-13 07:13:52
合計ジャッジ時間 15,182 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
52,880 KB
testcase_01 AC 289 ms
52,876 KB
testcase_02 AC 290 ms
52,892 KB
testcase_03 AC 288 ms
52,916 KB
testcase_04 AC 292 ms
52,860 KB
testcase_05 AC 291 ms
53,000 KB
testcase_06 AC 296 ms
52,936 KB
testcase_07 AC 292 ms
53,076 KB
testcase_08 AC 293 ms
52,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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