結果

問題 No.581 XOR
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-09 15:05:31
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 85 bytes
コンパイル時間 10,487 ms
コンパイル使用メモリ 412,016 KB
実行使用メモリ 55,060 KB
最終ジャッジ日時 2023-10-13 07:13:37
合計ジャッジ時間 14,065 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 275 ms
53,084 KB
testcase_01 AC 280 ms
53,052 KB
testcase_02 AC 276 ms
53,028 KB
testcase_03 AC 275 ms
52,960 KB
testcase_04 AC 281 ms
53,232 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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