結果

問題 No.64 XORフィボナッチ数列
ユーザー spaciaspacia
提出日時 2015-12-29 16:59:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 507 bytes
コンパイル時間 2,178 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 37,008 KB
最終ジャッジ日時 2024-09-19 08:25:04
合計ジャッジ時間 3,232 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,668 KB
testcase_01 AC 52 ms
36,308 KB
testcase_02 AC 52 ms
36,796 KB
testcase_03 AC 51 ms
36,908 KB
testcase_04 AC 51 ms
37,000 KB
testcase_05 AC 47 ms
36,964 KB
testcase_06 AC 48 ms
37,008 KB
testcase_07 AC 48 ms
36,932 KB
testcase_08 AC 48 ms
36,644 KB
testcase_09 AC 49 ms
36,992 KB
testcase_10 AC 47 ms
36,896 KB
testcase_11 AC 47 ms
36,588 KB
testcase_12 AC 49 ms
36,976 KB
testcase_13 AC 50 ms
36,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main64 {
	
	public static void out (Object out) {
		System.out.println(out);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String[] line = br.readLine().split(" ");
		long f0 = Long.parseLong(line[0]);
		long f1 = Long.parseLong(line[1]);
		long n  = Long.parseLong(line[2]);
		
		out(n % 3 == 0 ? f0 : n % 3 == 1 ? f1 : f0^f1);
		
	}
}
0