結果

問題 No.64 XORフィボナッチ数列
ユーザー キョウチクキョウチク
提出日時 2022-05-17 18:41:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 401 bytes
コンパイル時間 3,668 ms
コンパイル使用メモリ 74,296 KB
実行使用メモリ 41,388 KB
最終ジャッジ日時 2024-09-15 13:35:36
合計ジャッジ時間 6,021 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,844 KB
testcase_01 AC 125 ms
40,992 KB
testcase_02 AC 126 ms
41,160 KB
testcase_03 AC 124 ms
40,784 KB
testcase_04 AC 125 ms
41,088 KB
testcase_05 AC 129 ms
40,980 KB
testcase_06 AC 111 ms
40,116 KB
testcase_07 AC 126 ms
41,388 KB
testcase_08 AC 124 ms
40,944 KB
testcase_09 AC 111 ms
39,892 KB
testcase_10 AC 126 ms
41,200 KB
testcase_11 AC 112 ms
39,928 KB
testcase_12 AC 110 ms
39,844 KB
testcase_13 AC 127 ms
41,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test11 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String[] line;
    line=sc.nextLine().split(" ");
    long[] f=new long[3];
    f[0]=Long.parseLong(line[0]);
    f[1]=Long.parseLong(line[1]);
    f[2]=f[0]^f[1];
    long n=Long.parseLong(line[2]);
    int k=(int)(n%3);
    System.out.println(f[k]);
    sc.close();
  }
}
0