結果

問題 No.64 XORフィボナッチ数列
ユーザー Mcpu3Mcpu3
提出日時 2018-09-29 16:08:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 377 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 74,644 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-10-12 08:15:42
合計ジャッジ時間 4,331 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,340 KB
testcase_01 AC 114 ms
41,480 KB
testcase_02 AC 121 ms
40,832 KB
testcase_03 AC 111 ms
40,112 KB
testcase_04 AC 125 ms
41,520 KB
testcase_05 AC 114 ms
39,916 KB
testcase_06 AC 129 ms
41,024 KB
testcase_07 AC 126 ms
41,248 KB
testcase_08 AC 116 ms
41,344 KB
testcase_09 AC 114 ms
41,308 KB
testcase_10 AC 127 ms
41,440 KB
testcase_11 AC 118 ms
40,876 KB
testcase_12 AC 114 ms
39,840 KB
testcase_13 AC 124 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long F0 = sc.nextLong(), F1 = sc.nextLong(), N = sc.nextLong();
        sc.close();
        if (N % 3 == 0) System.out.print(F0);
        else if (N % 3 == 1) System.out.print(F1);
        else System.out.print(F0 ^ F1);
    }
}
0