結果

問題 No.64 XORフィボナッチ数列
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-15 09:24:01
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 484 bytes
コンパイル時間 5,027 ms
コンパイル使用メモリ 83,456 KB
実行使用メモリ 82,008 KB
最終ジャッジ日時 2024-12-25 18:49:03
合計ジャッジ時間 31,307 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
82,008 KB
testcase_01 AC 125 ms
81,008 KB
testcase_02 AC 124 ms
81,884 KB
testcase_03 AC 126 ms
46,484 KB
testcase_04 AC 116 ms
40,696 KB
testcase_05 AC 134 ms
41,404 KB
testcase_06 AC 114 ms
40,132 KB
testcase_07 AC 125 ms
41,468 KB
testcase_08 AC 121 ms
40,984 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 128 ms
41,204 KB
testcase_13 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No64 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long F0 = sc.nextLong();
		long F1 = sc.nextLong();
		long N = sc.nextLong();
		long Fn = F0 ^ F1;
		long Fn1 = F1;
		long Fn2 = F0;
		
		for(int i = 3;i <= N;i++) {
			Fn2 = Fn1;
			Fn1 = Fn;
			Fn = Fn1 ^ Fn2;
		}
		
		if(N == 0) {
			System.out.println(F0);
		}else if(N == 1) {
			System.out.println(F1);
		}else {
			System.out.println(Fn);
		}
	}
}
0