結果

問題 No.64 XORフィボナッチ数列
ユーザー papipenpapipen
提出日時 2017-04-08 22:53:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 339 bytes
コンパイル時間 2,339 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-07-17 23:57:17
合計ジャッジ時間 4,902 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
52,764 KB
testcase_01 AC 131 ms
53,724 KB
testcase_02 AC 131 ms
54,308 KB
testcase_03 AC 133 ms
54,172 KB
testcase_04 AC 133 ms
54,168 KB
testcase_05 AC 134 ms
54,112 KB
testcase_06 AC 133 ms
54,228 KB
testcase_07 AC 130 ms
53,708 KB
testcase_08 AC 134 ms
54,096 KB
testcase_09 AC 134 ms
53,948 KB
testcase_10 AC 136 ms
53,656 KB
testcase_11 AC 136 ms
53,672 KB
testcase_12 AC 139 ms
54,092 KB
testcase_13 AC 135 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class N064{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		long f0 = s.nextLong();
		long f1 = s.nextLong();
		long n = s.nextLong();
		if(n % 3 == 0){
			System.out.println(f0);
		}else if(n % 3 == 1){
			System.out.println(f1);
		}else{
			System.out.println(f0 ^ f1);
		}
	}
}
0