結果

問題 No.64 XORフィボナッチ数列
ユーザー shinshin
提出日時 2022-05-17 14:40:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 842 bytes
コンパイル時間 4,835 ms
コンパイル使用メモリ 76,236 KB
実行使用メモリ 37,140 KB
最終ジャッジ日時 2024-09-15 09:17:30
合計ジャッジ時間 5,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,788 KB
testcase_01 AC 51 ms
37,052 KB
testcase_02 AC 51 ms
36,892 KB
testcase_03 AC 50 ms
36,676 KB
testcase_04 AC 53 ms
37,060 KB
testcase_05 AC 51 ms
37,048 KB
testcase_06 AC 51 ms
36,860 KB
testcase_07 AC 49 ms
36,892 KB
testcase_08 AC 49 ms
37,140 KB
testcase_09 AC 50 ms
37,036 KB
testcase_10 AC 51 ms
36,676 KB
testcase_11 AC 50 ms
36,968 KB
testcase_12 AC 51 ms
36,652 KB
testcase_13 AC 52 ms
37,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No64 {

	public static void main(String[] args) throws IOException{
		//XORフィボナッチ数列
		String[] text = readStr()[0].split(" ");
		Long F = Long.parseLong(text[0]) , FF = Long.parseLong(text[1]) , N = Long.parseLong(text[2]);
		
		switch(Math.floorMod(N, 3)) {
			case 1 : F = FF;
				break;
			case 2 : F = F ^ FF;
		}
		
		System.out.println(F);


	}
	
	public static String[] readStr() throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		ArrayList<String> list = new ArrayList<>();

		do {
			list.add(br.readLine());
		}while(br.ready());

		br.close();

		String[] text = new String[list.size()];
		list.toArray(text);

		return text;

	}

}
0