結果

問題 No.64 XORフィボナッチ数列
ユーザー itezpaceitezpace
提出日時 2016-08-21 13:05:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 384 bytes
コンパイル時間 3,079 ms
コンパイル使用メモリ 73,784 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-11-07 22:25:16
合計ジャッジ時間 5,710 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,344 KB
testcase_01 AC 130 ms
40,980 KB
testcase_02 AC 117 ms
39,960 KB
testcase_03 AC 130 ms
41,216 KB
testcase_04 AC 120 ms
40,180 KB
testcase_05 AC 127 ms
41,188 KB
testcase_06 AC 128 ms
41,076 KB
testcase_07 AC 127 ms
41,236 KB
testcase_08 AC 126 ms
41,096 KB
testcase_09 AC 127 ms
41,248 KB
testcase_10 AC 121 ms
40,088 KB
testcase_11 AC 125 ms
41,028 KB
testcase_12 AC 126 ms
41,072 KB
testcase_13 AC 132 ms
41,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Yuki64 {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long a = sc.nextLong();
    long b = sc.nextLong();
    long c = a^b;
    long n = sc.nextLong();
    long x = 0;
    if(n%3==0){
      x = a;
    } else if(n%3==1){
      x = b;
    } else if(n%3==2){
      x = c;
    }
    System.out.println(x);
  }
}
0