結果

問題 No.64 XORフィボナッチ数列
ユーザー fal_rndfal_rnd
提出日時 2017-09-29 23:53:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 572 bytes
コンパイル時間 3,372 ms
コンパイル使用メモリ 79,088 KB
実行使用メモリ 54,024 KB
最終ジャッジ日時 2024-11-15 20:02:00
合計ジャッジ時間 4,894 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,708 KB
testcase_01 AC 126 ms
53,860 KB
testcase_02 AC 127 ms
54,024 KB
testcase_03 AC 122 ms
53,868 KB
testcase_04 AC 126 ms
53,916 KB
testcase_05 AC 125 ms
53,988 KB
testcase_06 AC 126 ms
53,732 KB
testcase_07 AC 127 ms
53,872 KB
testcase_08 AC 127 ms
53,568 KB
testcase_09 AC 125 ms
53,676 KB
testcase_10 AC 121 ms
53,932 KB
testcase_11 AC 130 ms
53,776 KB
testcase_12 AC 124 ms
53,868 KB
testcase_13 AC 124 ms
53,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.IntStream;

public class Main{
	static IntStream REPS(int v){return IntStream.range(0,v);}
	static IntStream REPS(int l,int r){return IntStream.rangeClosed(l,r);}
	static IntStream INS(int n){return REPS(n).map(i->getInt());}
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}
	static long getLong(){return Long.parseLong(s.next());}

	public static void main(String[]$){
		long a=getLong(),b=getLong();
		long[]v={a,b,a^b};
		System.out.println(v[(int)(getLong()%3)]);
	}
}
0