結果

問題 No.64 XORフィボナッチ数列
ユーザー ぴろずぴろず
提出日時 2014-12-12 09:42:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 328 bytes
コンパイル時間 2,036 ms
コンパイル使用メモリ 73,872 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-06-11 20:58:01
合計ジャッジ時間 4,745 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,168 KB
testcase_01 AC 131 ms
53,920 KB
testcase_02 AC 129 ms
54,280 KB
testcase_03 AC 131 ms
54,396 KB
testcase_04 AC 132 ms
54,120 KB
testcase_05 AC 132 ms
53,960 KB
testcase_06 AC 131 ms
54,112 KB
testcase_07 AC 130 ms
54,188 KB
testcase_08 AC 131 ms
54,260 KB
testcase_09 AC 132 ms
54,352 KB
testcase_10 AC 134 ms
53,948 KB
testcase_11 AC 133 ms
54,168 KB
testcase_12 AC 132 ms
54,180 KB
testcase_13 AC 133 ms
54,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no064;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long[] f = new long[3];
		f[0] = sc.nextLong();
		f[1] = sc.nextLong();
		f[2] = f[0] ^ f[1];
		long n = sc.nextLong();
		System.out.println(f[(int) (n%3)]);
	}

}
0