結果

問題 No.64 XORフィボナッチ数列
ユーザー samplelpmassamplelpmas
提出日時 2017-01-19 16:17:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 351 bytes
コンパイル時間 1,773 ms
コンパイル使用メモリ 75,060 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-06-02 07:00:14
合計ジャッジ時間 4,075 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,044 KB
testcase_01 AC 117 ms
54,096 KB
testcase_02 AC 116 ms
53,852 KB
testcase_03 AC 109 ms
52,888 KB
testcase_04 AC 118 ms
54,088 KB
testcase_05 AC 119 ms
53,940 KB
testcase_06 AC 120 ms
54,040 KB
testcase_07 AC 123 ms
54,116 KB
testcase_08 AC 124 ms
53,840 KB
testcase_09 AC 123 ms
54,216 KB
testcase_10 AC 124 ms
54,140 KB
testcase_11 AC 106 ms
53,028 KB
testcase_12 AC 117 ms
54,092 KB
testcase_13 AC 105 ms
52,636 KB
権限があれば一括ダウンロードができます

ソースコード

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