結果

問題 No.64 XORフィボナッチ数列
ユーザー バカらっくバカらっく
提出日時 2019-09-23 02:21:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 309 ms / 5,000 ms
コード長 245 bytes
コンパイル時間 12,544 ms
コンパイル使用メモリ 429,140 KB
実行使用メモリ 51,940 KB
最終ジャッジ日時 2024-09-19 04:09:42
合計ジャッジ時間 15,808 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 280 ms
51,940 KB
testcase_01 AC 280 ms
51,788 KB
testcase_02 AC 283 ms
51,776 KB
testcase_03 AC 280 ms
51,572 KB
testcase_04 AC 290 ms
51,700 KB
testcase_05 AC 309 ms
51,660 KB
testcase_06 AC 305 ms
51,636 KB
testcase_07 AC 302 ms
51,588 KB
testcase_08 AC 290 ms
51,844 KB
testcase_09 AC 285 ms
51,700 KB
testcase_10 AC 290 ms
51,784 KB
testcase_11 AC 285 ms
51,828 KB
testcase_12 AC 287 ms
51,536 KB
testcase_13 AC 284 ms
51,664 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^

ソースコード

diff #

fun main(arr:Array<String>) {
    val (f0,f1, n) = readLine()!!.split(" ").map { it.toLong() }
    val temp = mutableListOf<Long>()
    temp.add(f0)
    temp.add(f1)
    temp.add(f0 xor f1)
    val ans = temp[(n % 3).toInt()]
    println(ans)
}
0