結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー | バカらっく |
提出日時 | 2019-09-23 02:20:07 |
言語 | Kotlin (1.9.23) |
結果 |
RE
|
実行時間 | - |
コード長 | 233 bytes |
コンパイル時間 | 12,716 ms |
コンパイル使用メモリ | 435,708 KB |
実行使用メモリ | 51,984 KB |
最終ジャッジ日時 | 2024-09-19 04:09:07 |
合計ジャッジ時間 | 16,981 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 268 ms
51,720 KB |
testcase_01 | AC | 274 ms
51,984 KB |
testcase_02 | AC | 274 ms
51,640 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 287 ms
51,712 KB |
testcase_13 | RE | - |
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'arr' is never used fun main(arr:Array<String>) { ^
ソースコード
fun main(arr:Array<String>) { val (f0,f1, n) = readLine()!!.split(" ").map { it.toInt() } val temp = mutableListOf<Int>() temp.add(f0) temp.add(f1) temp.add(f0 xor f1) val ans = temp[n % 3] println(ans) }