結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,448 KB
testcase_01 AC 110 ms
41,188 KB
testcase_02 AC 107 ms
41,320 KB
testcase_03 AC 109 ms
41,504 KB
testcase_04 AC 111 ms
40,032 KB
testcase_05 AC 109 ms
41,096 KB
testcase_06 AC 108 ms
41,040 KB
testcase_07 AC 99 ms
40,056 KB
testcase_08 AC 98 ms
40,396 KB
testcase_09 AC 94 ms
39,656 KB
testcase_10 AC 105 ms
40,420 KB
testcase_11 AC 122 ms
41,120 KB
testcase_12 AC 114 ms
41,452 KB
testcase_13 AC 106 ms
41,120 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