結果

問題 No.64 XORフィボナッチ数列
ユーザー soujikisoujiki
提出日時 2015-04-29 19:38:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 427 bytes
コンパイル時間 2,668 ms
コンパイル使用メモリ 74,176 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2024-07-05 16:45:35
合計ジャッジ時間 5,011 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,268 KB
testcase_01 AC 127 ms
41,416 KB
testcase_02 AC 125 ms
41,168 KB
testcase_03 AC 116 ms
41,432 KB
testcase_04 AC 120 ms
41,216 KB
testcase_05 AC 119 ms
40,992 KB
testcase_06 AC 126 ms
41,152 KB
testcase_07 AC 128 ms
41,128 KB
testcase_08 AC 128 ms
41,708 KB
testcase_09 AC 125 ms
41,484 KB
testcase_10 AC 121 ms
41,296 KB
testcase_11 AC 105 ms
41,452 KB
testcase_12 AC 106 ms
41,436 KB
testcase_13 AC 117 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder_64{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		long F0 = stdIn.nextLong();
		long F1 = stdIn.nextLong();
		long N = stdIn.nextLong();
		long count = N%(long)3;
		long F2 = F0^F1;
		if(count == 0){
			System.out.println(F0);
		}
		else if(count == 1){
			System.out.println(F1);
		}
		else if(count == 2){
			System.out.println(F2);
		}
	}
}
0