結果

問題 No.64 XORフィボナッチ数列
ユーザー dazydazy
提出日時 2016-09-09 00:18:05
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 622 bytes
コンパイル時間 3,481 ms
コンパイル使用メモリ 74,068 KB
実行使用メモリ 108,176 KB
最終ジャッジ日時 2024-11-15 22:44:58
合計ジャッジ時間 29,782 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
60,704 KB
testcase_01 AC 141 ms
108,020 KB
testcase_02 AC 139 ms
108,176 KB
testcase_03 AC 143 ms
54,396 KB
testcase_04 AC 135 ms
53,904 KB
testcase_05 AC 136 ms
53,908 KB
testcase_06 AC 136 ms
53,616 KB
testcase_07 AC 136 ms
53,952 KB
testcase_08 AC 137 ms
53,980 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 144 ms
53,960 KB
testcase_13 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

        if (N==0) {
            System.out.println(F0);
            System.exit(0);
        } else {
            long tmp;
            for (int i = 0; i < N - 1; i++) {
                tmp = F1;
                F1 = F0 ^ F1;
                F0 = tmp;
            }
            System.out.println(F1);
        }
    }
}
0