結果

問題 No.64 XORフィボナッチ数列
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 23:38:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 440 bytes
コンパイル時間 2,824 ms
コンパイル使用メモリ 74,696 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-11-25 22:07:18
合計ジャッジ時間 4,569 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,628 KB
testcase_01 AC 121 ms
53,892 KB
testcase_02 AC 124 ms
53,892 KB
testcase_03 AC 113 ms
52,872 KB
testcase_04 AC 125 ms
54,252 KB
testcase_05 AC 122 ms
53,832 KB
testcase_06 AC 124 ms
54,112 KB
testcase_07 AC 127 ms
54,020 KB
testcase_08 AC 121 ms
53,872 KB
testcase_09 AC 118 ms
53,784 KB
testcase_10 AC 123 ms
53,900 KB
testcase_11 AC 126 ms
53,924 KB
testcase_12 AC 126 ms
53,696 KB
testcase_13 AC 128 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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