結果
問題 | No.581 XOR |
ユーザー | 💕💖💞 |
提出日時 | 2017-12-24 22:05:23 |
言語 | Kotlin (1.9.23) |
結果 |
RE
|
実行時間 | - |
コード長 | 106 bytes |
コンパイル時間 | 11,132 ms |
コンパイル使用メモリ | 434,360 KB |
実行使用メモリ | 57,148 KB |
最終ジャッジ日時 | 2024-11-20 13:35:16 |
合計ジャッジ時間 | 14,935 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 316 ms
56,708 KB |
testcase_01 | AC | 315 ms
57,060 KB |
testcase_02 | AC | 315 ms
56,700 KB |
testcase_03 | AC | 318 ms
56,708 KB |
testcase_04 | AC | 319 ms
56,988 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used fun main(args:Array<String>){ ^
ソースコード
fun main(args:Array<String>){ val (a,b) = readLine()!!.split(" ").map{ it.toInt() } println(a xor b) }