結果

問題 No.64 XORフィボナッチ数列
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-15 09:39:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 375 bytes
コンパイル時間 3,380 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-06-07 15:08:37
合計ジャッジ時間 6,069 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,996 KB
testcase_01 AC 130 ms
41,048 KB
testcase_02 AC 128 ms
41,468 KB
testcase_03 AC 131 ms
41,120 KB
testcase_04 AC 133 ms
41,520 KB
testcase_05 AC 133 ms
41,308 KB
testcase_06 AC 117 ms
40,036 KB
testcase_07 AC 134 ms
41,120 KB
testcase_08 AC 134 ms
41,160 KB
testcase_09 AC 132 ms
41,068 KB
testcase_10 AC 130 ms
41,268 KB
testcase_11 AC 130 ms
41,160 KB
testcase_12 AC 131 ms
41,296 KB
testcase_13 AC 133 ms
41,084 KB
権限があれば一括ダウンロードができます

ソースコード

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;
		
		if(N % 3 == 0) {
			System.out.println(F0);
		}else if(N % 3 == 1) {
			System.out.println(F1);
		}else {
			System.out.println(Fn);
		}
	}
}
0