結果

問題 No.64 XORフィボナッチ数列
ユーザー itezpaceitezpace
提出日時 2016-08-21 12:52:43
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 498 bytes
コンパイル時間 2,291 ms
コンパイル使用メモリ 74,076 KB
実行使用メモリ 835,448 KB
最終ジャッジ日時 2024-11-07 22:25:08
合計ジャッジ時間 6,200 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,352 KB
testcase_01 AC 126 ms
41,256 KB
testcase_02 AC 116 ms
40,204 KB
testcase_03 AC 130 ms
41,156 KB
testcase_04 AC 127 ms
41,388 KB
testcase_05 AC 131 ms
41,204 KB
testcase_06 AC 130 ms
41,112 KB
testcase_07 AC 130 ms
41,256 KB
testcase_08 AC 128 ms
41,072 KB
testcase_09 MLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Yuki64 {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long a = sc.nextLong();
    long b = sc.nextLong();
    long n = sc.nextLong();
    long x = 0;
    if(n>=2){
      x = fib(b,a,n);
    } else if(n==0){
      x = a;
    } else if(n==1){
      x = b;
    }
    System.out.println(x);
  }

  private static long fib(long b,long a,long n) {
    long c = b^a;
    n-=1;
    if(n==1) return c;
    return fib(c,b,n);
  }
}
0