結果

問題 No.64 XORフィボナッチ数列
ユーザー kano_townkano_town
提出日時 2014-11-21 14:47:42
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 440 bytes
コンパイル時間 3,025 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 46,672 KB
最終ジャッジ日時 2024-06-10 21:30:48
合計ジャッジ時間 10,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
46,672 KB
testcase_01 AC 102 ms
40,300 KB
testcase_02 AC 111 ms
41,016 KB
testcase_03 AC 111 ms
41,088 KB
testcase_04 AC 114 ms
41,240 KB
testcase_05 AC 111 ms
41,056 KB
testcase_06 AC 97 ms
39,992 KB
testcase_07 AC 98 ms
40,400 KB
testcase_08 AC 99 ms
40,348 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder64 {

	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 = 0;
		
		if (N == 0) fn = f0;
		else if (N == 1) fn = f1;
		else {
			for (long i = 2; i <= N; i++) {
				fn = f0 ^ f1;
				f0 = f1;
				f1 = fn;
			}
		}
		System.out.println(fn);
	}
}
0