結果

問題 No.64 XORフィボナッチ数列
ユーザー shinshin
提出日時 2022-05-17 14:33:55
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 841 bytes
コンパイル時間 3,763 ms
コンパイル使用メモリ 76,364 KB
実行使用メモリ 61,532 KB
最終ジャッジ日時 2024-09-15 09:05:05
合計ジャッジ時間 10,797 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,576 KB
testcase_01 AC 51 ms
36,728 KB
testcase_02 AC 54 ms
36,724 KB
testcase_03 AC 53 ms
37,056 KB
testcase_04 AC 53 ms
36,796 KB
testcase_05 AC 51 ms
36,476 KB
testcase_06 AC 53 ms
37,088 KB
testcase_07 AC 55 ms
36,832 KB
testcase_08 AC 53 ms
36,488 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

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]) , count = 0l;
		
		while(count < N) {
			Long x = FF;
			FF = F ^ FF;
			F = x;
			count++;
		}
		
		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