結果

問題 No.64 XORフィボナッチ数列
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-03 03:14:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 830 bytes
コンパイル時間 3,334 ms
コンパイル使用メモリ 75,516 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-07-04 01:32:26
合計ジャッジ時間 5,763 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,020 KB
testcase_01 AC 112 ms
53,248 KB
testcase_02 AC 115 ms
53,128 KB
testcase_03 AC 126 ms
54,172 KB
testcase_04 AC 123 ms
54,108 KB
testcase_05 AC 124 ms
54,296 KB
testcase_06 AC 128 ms
53,988 KB
testcase_07 AC 123 ms
53,928 KB
testcase_08 AC 130 ms
54,020 KB
testcase_09 AC 124 ms
54,104 KB
testcase_10 AC 125 ms
53,768 KB
testcase_11 AC 128 ms
54,132 KB
testcase_12 AC 131 ms
54,168 KB
testcase_13 AC 134 ms
54,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.64 XORフィボナッチ数列

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No64 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        long[] f = new long[3];
        f[0] = sc.nextLong();
        f[1] = sc.nextLong();
        long n = sc.nextLong();
        f[2] = f[0]^f[1];
        out.println(f[(int)(n%3)]);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0