結果

問題 No.64 XORフィボナッチ数列
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-03-06 13:52:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 362 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 74,100 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-09-18 18:26:14
合計ジャッジ時間 5,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,248 KB
testcase_01 AC 137 ms
41,140 KB
testcase_02 AC 133 ms
41,268 KB
testcase_03 AC 136 ms
41,100 KB
testcase_04 AC 136 ms
41,472 KB
testcase_05 AC 137 ms
41,400 KB
testcase_06 AC 136 ms
41,116 KB
testcase_07 AC 137 ms
41,208 KB
testcase_08 AC 135 ms
41,420 KB
testcase_09 AC 137 ms
41,364 KB
testcase_10 AC 138 ms
41,488 KB
testcase_11 AC 137 ms
41,348 KB
testcase_12 AC 136 ms
41,128 KB
testcase_13 AC 137 ms
41,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

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