結果

問題 No.64 XORフィボナッチ数列
ユーザー kano_townkano_town
提出日時 2014-11-21 14:51:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 366 bytes
コンパイル時間 3,705 ms
コンパイル使用メモリ 74,840 KB
実行使用メモリ 41,744 KB
最終ジャッジ日時 2024-06-10 21:30:27
合計ジャッジ時間 5,326 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,628 KB
testcase_01 AC 120 ms
41,656 KB
testcase_02 AC 119 ms
41,440 KB
testcase_03 AC 119 ms
41,372 KB
testcase_04 AC 117 ms
41,744 KB
testcase_05 AC 121 ms
41,616 KB
testcase_06 AC 119 ms
41,712 KB
testcase_07 AC 118 ms
41,420 KB
testcase_08 AC 120 ms
41,308 KB
testcase_09 AC 117 ms
41,700 KB
testcase_10 AC 110 ms
41,316 KB
testcase_11 AC 105 ms
41,728 KB
testcase_12 AC 117 ms
41,372 KB
testcase_13 AC 118 ms
41,696 KB
権限があれば一括ダウンロードができます

ソースコード

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;
		
		if (N % 3 == 0) fn = f0;
		else if (N % 3 == 1) fn = f1;
		else fn = f0 ^ f1;
		
		System.out.println(fn);
	}
}
0