結果

問題 No.64 XORフィボナッチ数列
ユーザー nCk_cvnCk_cv
提出日時 2016-02-01 20:09:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 373 bytes
コンパイル時間 2,146 ms
コンパイル使用メモリ 80,404 KB
実行使用メモリ 54,008 KB
最終ジャッジ日時 2024-09-21 19:51:30
合計ジャッジ時間 4,872 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
53,716 KB
testcase_01 AC 145 ms
53,692 KB
testcase_02 AC 143 ms
53,988 KB
testcase_03 AC 138 ms
54,008 KB
testcase_04 AC 137 ms
53,984 KB
testcase_05 AC 137 ms
53,640 KB
testcase_06 AC 138 ms
53,984 KB
testcase_07 AC 133 ms
53,624 KB
testcase_08 AC 140 ms
53,552 KB
testcase_09 AC 146 ms
53,720 KB
testcase_10 AC 145 ms
53,576 KB
testcase_11 AC 144 ms
53,540 KB
testcase_12 AC 145 ms
53,764 KB
testcase_13 AC 142 ms
53,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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