結果

問題 No.64 XORフィボナッチ数列
ユーザー k_kadorak_kadora
提出日時 2015-05-22 02:22:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 351 bytes
コンパイル時間 2,962 ms
コンパイル使用メモリ 74,044 KB
実行使用メモリ 41,284 KB
最終ジャッジ日時 2024-07-06 04:25:58
合計ジャッジ時間 5,612 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,932 KB
testcase_01 AC 108 ms
40,100 KB
testcase_02 AC 115 ms
40,896 KB
testcase_03 AC 120 ms
41,032 KB
testcase_04 AC 119 ms
41,284 KB
testcase_05 AC 107 ms
40,292 KB
testcase_06 AC 109 ms
39,964 KB
testcase_07 AC 115 ms
41,068 KB
testcase_08 AC 116 ms
41,076 KB
testcase_09 AC 118 ms
41,132 KB
testcase_10 AC 116 ms
40,684 KB
testcase_11 AC 104 ms
40,076 KB
testcase_12 AC 117 ms
41,088 KB
testcase_13 AC 120 ms
40,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Fib{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		long f0,f1,f2,n;
		f0 = sc.nextLong();
		f1 = sc.nextLong();
		n = sc.nextLong();
		f2 = f0^f1;
		if(n%3 == 0){
			System.out.println(f0);
		}else if (n%3 ==1){
			System.out.println(f1);
		}else{
			System.out.println(f2);
		}
	}
}
0