結果

問題 No.64 XORフィボナッチ数列
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-15 09:24:01
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 484 bytes
コンパイル時間 4,128 ms
コンパイル使用メモリ 74,080 KB
実行使用メモリ 46,308 KB
最終ジャッジ日時 2024-06-07 14:03:46
合計ジャッジ時間 12,089 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,308 KB
testcase_01 AC 129 ms
41,332 KB
testcase_02 AC 126 ms
41,432 KB
testcase_03 AC 114 ms
40,196 KB
testcase_04 AC 128 ms
41,324 KB
testcase_05 AC 125 ms
41,304 KB
testcase_06 AC 127 ms
41,092 KB
testcase_07 AC 129 ms
41,008 KB
testcase_08 AC 114 ms
40,152 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

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