結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー | koukonko |
提出日時 | 2015-12-07 18:09:13 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 853 bytes |
コンパイル時間 | 2,191 ms |
コンパイル使用メモリ | 74,424 KB |
実行使用メモリ | 50,704 KB |
最終ジャッジ日時 | 2024-09-14 18:28:38 |
合計ジャッジ時間 | 3,621 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
37,140 KB |
testcase_01 | WA | - |
testcase_02 | AC | 53 ms
36,956 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 53 ms
37,276 KB |
testcase_06 | AC | 53 ms
36,656 KB |
testcase_07 | AC | 54 ms
36,604 KB |
testcase_08 | WA | - |
testcase_09 | AC | 53 ms
36,848 KB |
testcase_10 | AC | 54 ms
36,628 KB |
testcase_11 | WA | - |
testcase_12 | AC | 54 ms
36,684 KB |
testcase_13 | AC | 54 ms
36,944 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.math.BigInteger; public class Main { public static void main(String[] args) { BufferedReader buff = new BufferedReader(new InputStreamReader(System.in)); try { String[] box = buff.readLine().split(" "); BigInteger[] f = new BigInteger[2]; f[0] = new BigInteger(box[0]); f[1] = new BigInteger(box[1]); BigInteger n = new BigInteger(box[2]); if ((new BigInteger("2")).compareTo(n) == -1) { System.out.println(f[(n.remainder(new BigInteger("3")).intValue())]); return; } else { BigInteger w = f[0].xor(f[1]); System.out.println(w); } } catch (NumberFormatException e) { e.getStackTrace(); } catch (IOException e) { e.getStackTrace(); } catch (Exception e) { e.getStackTrace(); } } }