結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー | koukonko |
提出日時 | 2015-12-07 17:32:48 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 689 bytes |
コンパイル時間 | 2,087 ms |
コンパイル使用メモリ | 72,904 KB |
実行使用メモリ | 36,924 KB |
最終ジャッジ日時 | 2024-09-14 18:27:39 |
合計ジャッジ時間 | 3,556 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
36,540 KB |
testcase_01 | AC | 55 ms
36,376 KB |
testcase_02 | AC | 53 ms
36,924 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 52 ms
36,556 KB |
testcase_13 | WA | - |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) { BufferedReader buff = new BufferedReader(new InputStreamReader(System.in)); try { String[] box = buff.readLine().split(" "); int[] f = new int[2]; f[0] = Integer.parseInt(box[0]); f[1] = Integer.parseInt(box[1]); int n = Integer.parseInt(box[2]); if(n < 2){ System.out.println(f[n]); return; } int now = 1; while(now++ < n){ int w = f[0] ^ f[1]; f[0] = f[1]; f[1] = w; } System.out.println(f[1]); } catch (NumberFormatException e) { } catch (IOException e) { } } }