結果

問題 No.64 XORフィボナッチ数列
ユーザー YamaKasaYamaKasa
提出日時 2018-05-11 23:26:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 381 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 73,632 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-06-28 09:03:22
合計ジャッジ時間 4,711 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,148 KB
testcase_01 AC 135 ms
53,660 KB
testcase_02 AC 136 ms
53,976 KB
testcase_03 AC 135 ms
54,052 KB
testcase_04 AC 137 ms
53,824 KB
testcase_05 AC 137 ms
53,736 KB
testcase_06 AC 137 ms
53,736 KB
testcase_07 AC 137 ms
53,824 KB
testcase_08 AC 134 ms
53,956 KB
testcase_09 AC 137 ms
53,740 KB
testcase_10 AC 136 ms
54,056 KB
testcase_11 AC 135 ms
53,932 KB
testcase_12 AC 133 ms
54,128 KB
testcase_13 AC 135 ms
54,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long F0 = scan.nextLong();
		long F1 = scan.nextLong();
		long N = scan.nextLong();
		scan.close();
		long ans = 0;
		if(N % 3 == 0) {
			ans = F0;
		}else if(N % 3 == 1) {
			ans = F1;
		}else {
			ans = F0 ^ F1;
		}
		System.out.println(ans);
	}
}
0