結果
問題 | No.581 XOR |
ユーザー | komkomh |
提出日時 | 2019-06-10 15:23:04 |
言語 | Kotlin (1.9.23) |
結果 |
RE
|
実行時間 | - |
コード長 | 649 bytes |
コンパイル時間 | 12,049 ms |
コンパイル使用メモリ | 437,828 KB |
実行使用メモリ | 57,176 KB |
最終ジャッジ日時 | 2024-11-20 18:53:13 |
合計ジャッジ時間 | 15,872 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 327 ms
57,052 KB |
testcase_01 | AC | 325 ms
57,008 KB |
testcase_02 | AC | 320 ms
57,000 KB |
testcase_03 | AC | 321 ms
56,988 KB |
testcase_04 | AC | 323 ms
56,908 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
ソースコード
package yukicoder fun main() { val (A, C) = readLine()!!.split(" ").map(String::toInt) val A2: String = Integer.toString(A, 2) val C2: String = Integer.toString(C, 2) val maxLength = when (A2.length > C2.length) { true -> A2.length false -> C2.length } val padA2 = A2.padStart(maxLength, '0') val padC2 = C2.padStart(maxLength, '0') val chars: CharArray = (0 until maxLength).map { val a = padA2[it] val c = padC2[it] when (a == c) { true -> '0' false -> '1' } }.toCharArray() val ans:Int = String(chars).toInt(2) println(ans) }