結果

問題 No.64 XORフィボナッチ数列
ユーザー samplelpmassamplelpmas
提出日時 2017-01-19 16:13:39
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 349 bytes
コンパイル時間 1,783 ms
コンパイル使用メモリ 74,104 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-06-02 07:00:09
合計ジャッジ時間 4,114 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
39,964 KB
testcase_01 AC 122 ms
41,172 KB
testcase_02 AC 111 ms
40,984 KB
testcase_03 AC 104 ms
40,080 KB
testcase_04 AC 103 ms
40,000 KB
testcase_05 AC 105 ms
40,100 KB
testcase_06 AC 106 ms
39,960 KB
testcase_07 AC 109 ms
41,112 KB
testcase_08 AC 116 ms
41,508 KB
testcase_09 RE -
testcase_10 AC 110 ms
41,504 KB
testcase_11 AC 111 ms
41,316 KB
testcase_12 AC 101 ms
39,972 KB
testcase_13 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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