結果

問題 No.64 XORフィボナッチ数列
ユーザー uafr_csuafr_cs
提出日時 2015-05-15 02:27:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 459 bytes
コンパイル時間 2,187 ms
コンパイル使用メモリ 75,012 KB
実行使用メモリ 41,548 KB
最終ジャッジ日時 2024-07-06 03:47:15
合計ジャッジ時間 4,563 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,120 KB
testcase_01 AC 123 ms
41,136 KB
testcase_02 AC 122 ms
41,452 KB
testcase_03 AC 126 ms
41,548 KB
testcase_04 AC 111 ms
39,776 KB
testcase_05 AC 124 ms
41,396 KB
testcase_06 AC 112 ms
40,064 KB
testcase_07 AC 112 ms
39,684 KB
testcase_08 AC 112 ms
39,916 KB
testcase_09 AC 122 ms
41,056 KB
testcase_10 AC 128 ms
40,856 KB
testcase_11 AC 117 ms
40,216 KB
testcase_12 AC 125 ms
41,264 KB
testcase_13 AC 123 ms
40,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	// xor の性質 (X ^ Y) ^ X = Y より, F0, F1, F0 ^ F1, F0, F1, ... とループする.
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final long F0 = sc.nextLong();
		final long F1 = sc.nextLong();
		final long N = sc.nextLong();
		
		System.out.println(N % 3 == 0 ? F0 : N % 3 == 1 ? F1 : (F0 ^ F1));
		
		
	}
	
}
0