結果

問題 No.64 XORフィボナッチ数列
ユーザー dazydazy
提出日時 2016-09-09 01:00:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 627 bytes
コンパイル時間 4,063 ms
コンパイル使用メモリ 74,420 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-11-15 22:55:40
合計ジャッジ時間 6,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,752 KB
testcase_01 AC 139 ms
53,864 KB
testcase_02 AC 129 ms
53,796 KB
testcase_03 AC 137 ms
54,176 KB
testcase_04 AC 131 ms
53,760 KB
testcase_05 AC 130 ms
53,840 KB
testcase_06 AC 130 ms
53,696 KB
testcase_07 AC 115 ms
52,852 KB
testcase_08 AC 135 ms
54,408 KB
testcase_09 AC 130 ms
54,056 KB
testcase_10 AC 129 ms
53,928 KB
testcase_11 AC 130 ms
53,892 KB
testcase_12 AC 135 ms
54,116 KB
testcase_13 AC 117 ms
52,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        long[] F = new long[3];
        F[0] = scan.nextLong();
        F[1] = scan.nextLong();
        long N = scan.nextLong();
        if (F[0] < 0||F[1] < 0||N > Math.pow(10d, 18)) System.exit(1);

        if (N==0) {
            System.out.println(F[0]);
            System.exit(0);
        } else {
            F[2] = F[0] ^ F[1];
            F[0] = F[1];
            F[1] = F[2];
            F[2] = F[0] ^ F[1];
            System.out.println(F[((int) ((N - 1) % 3L))]);
        }
    }
}
0