結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,072 KB
testcase_01 AC 142 ms
54,112 KB
testcase_02 AC 136 ms
53,664 KB
testcase_03 AC 142 ms
54,220 KB
testcase_04 AC 137 ms
53,632 KB
testcase_05 AC 136 ms
53,912 KB
testcase_06 AC 137 ms
53,944 KB
testcase_07 AC 137 ms
53,972 KB
testcase_08 AC 139 ms
54,164 KB
testcase_09 AC 136 ms
53,832 KB
testcase_10 AC 138 ms
54,000 KB
testcase_11 AC 141 ms
53,804 KB
testcase_12 AC 143 ms
53,864 KB
testcase_13 AC 136 ms
54,012 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