結果

問題 No.64 XORフィボナッチ数列
ユーザー リチウムリチウム
提出日時 2014-11-11 23:38:33
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 319 bytes
コンパイル時間 2,891 ms
コンパイル使用メモリ 74,592 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-06-10 02:29:48
合計ジャッジ時間 5,066 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
40,316 KB
testcase_01 AC 102 ms
40,056 KB
testcase_02 AC 111 ms
41,240 KB
testcase_03 AC 97 ms
40,252 KB
testcase_04 AC 113 ms
41,436 KB
testcase_05 AC 104 ms
40,076 KB
testcase_06 AC 110 ms
41,472 KB
testcase_07 AC 97 ms
40,136 KB
testcase_08 AC 107 ms
41,320 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 111 ms
41,180 KB
testcase_13 RE -
権限があれば一括ダウンロードができます

ソースコード

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();
		int n=sc.nextInt();
		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