結果

問題 No.64 XORフィボナッチ数列
ユーザー GrenacheGrenache
提出日時 2015-09-22 23:53:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 395 bytes
コンパイル時間 3,025 ms
コンパイル使用メモリ 73,772 KB
実行使用メモリ 54,036 KB
最終ジャッジ日時 2024-07-19 08:43:49
合計ジャッジ時間 5,411 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,928 KB
testcase_01 AC 114 ms
52,876 KB
testcase_02 AC 122 ms
53,892 KB
testcase_03 AC 122 ms
53,908 KB
testcase_04 AC 119 ms
53,896 KB
testcase_05 AC 109 ms
52,656 KB
testcase_06 AC 127 ms
54,036 KB
testcase_07 AC 111 ms
52,708 KB
testcase_08 AC 125 ms
53,836 KB
testcase_09 AC 129 ms
53,788 KB
testcase_10 AC 124 ms
54,036 KB
testcase_11 AC 116 ms
52,804 KB
testcase_12 AC 126 ms
53,860 KB
testcase_13 AC 126 ms
53,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder64 {

    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)]);
        
        sc.close();
    }
}
0