結果

問題 No.64 XORフィボナッチ数列
ユーザー リチウムリチウム
提出日時 2014-11-11 23:39:19
言語 Java
(openjdk 23)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 321 bytes
コンパイル時間 3,605 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-12-31 09:52:16
合計ジャッジ時間 6,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
53,808 KB
testcase_01 AC 142 ms
54,092 KB
testcase_02 AC 144 ms
53,928 KB
testcase_03 AC 140 ms
54,104 KB
testcase_04 AC 140 ms
54,088 KB
testcase_05 AC 140 ms
54,104 KB
testcase_06 AC 141 ms
53,968 KB
testcase_07 AC 138 ms
54,120 KB
testcase_08 AC 136 ms
54,060 KB
testcase_09 AC 133 ms
54,396 KB
testcase_10 AC 135 ms
54,148 KB
testcase_11 AC 134 ms
54,224 KB
testcase_12 AC 137 ms
54,116 KB
testcase_13 AC 137 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class ok{
	public static void main(String[] args) {
		Scanner sc=new Scanner (System.in);
		long f=sc.nextLong();
		long g=sc.nextLong();
		long n=sc.nextLong();
		long h=f^g;
		long ans;
		if(n%3==0)ans=f;
		else if(n%3==1)ans=g;
		else ans=h;
		
		System.out.println(ans);
	}}
0