結果

問題 No.64 XORフィボナッチ数列
ユーザー jimanojimano
提出日時 2018-02-04 16:15:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 671 bytes
コンパイル時間 5,363 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 50,280 KB
最終ジャッジ日時 2024-06-30 03:58:26
合計ジャッジ時間 4,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
49,848 KB
testcase_01 AC 52 ms
49,984 KB
testcase_02 AC 54 ms
50,108 KB
testcase_03 AC 53 ms
50,092 KB
testcase_04 AC 54 ms
50,016 KB
testcase_05 AC 54 ms
50,004 KB
testcase_06 AC 53 ms
49,780 KB
testcase_07 AC 53 ms
49,860 KB
testcase_08 AC 53 ms
49,948 KB
testcase_09 AC 54 ms
49,944 KB
testcase_10 AC 54 ms
50,096 KB
testcase_11 AC 54 ms
50,280 KB
testcase_12 AC 51 ms
50,104 KB
testcase_13 AC 53 ms
50,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1_5;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0064 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String[] str = br.readLine().split(" ");
			long f0 = Long.parseLong(str[0]);
			long f1 = Long.parseLong(str[1]);
			long n = Long.parseLong(str[2]);

			System.out.println(xor(f1, f0, n));
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	static long xor(long f1, long f0, long n) {

		if (n % 3 == 0) {
			return f0;
		} else if (n % 3 == 1) {
			return f1;
		}
		return f1 ^ f0;
	}
}
0