結果

問題 No.64 XORフィボナッチ数列
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-02-20 22:50:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 438 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 75,484 KB
実行使用メモリ 54,368 KB
最終ジャッジ日時 2024-06-09 16:49:15
合計ジャッジ時間 4,272 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,108 KB
testcase_01 AC 121 ms
54,368 KB
testcase_02 AC 119 ms
54,068 KB
testcase_03 AC 117 ms
54,172 KB
testcase_04 AC 105 ms
53,012 KB
testcase_05 AC 111 ms
53,708 KB
testcase_06 AC 123 ms
54,036 KB
testcase_07 AC 123 ms
54,024 KB
testcase_08 AC 113 ms
53,024 KB
testcase_09 AC 106 ms
52,980 KB
testcase_10 AC 107 ms
53,004 KB
testcase_11 AC 113 ms
53,940 KB
testcase_12 AC 105 ms
53,060 KB
testcase_13 AC 114 ms
54,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        long[] f = new long[3];
        f[0] = in.nextLong();
        f[1] = in.nextLong();
        f[2] = f[0] ^ f[1];

        long n = in.nextLong();

        System.out.println(f[(int)(n%3)]);

        in.close();
    }
}
0