結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー | k_kadora |
提出日時 | 2015-05-22 02:20:35 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 348 bytes |
コンパイル時間 | 3,224 ms |
コンパイル使用メモリ | 74,028 KB |
実行使用メモリ | 54,260 KB |
最終ジャッジ日時 | 2024-07-06 04:25:16 |
合計ジャッジ時間 | 5,104 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 112 ms
53,960 KB |
testcase_01 | AC | 102 ms
52,936 KB |
testcase_02 | AC | 117 ms
54,088 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 118 ms
53,928 KB |
testcase_13 | RE | - |
ソースコード
import java.util.*; public class Fib{ public static void main(String[] arg){ Scanner sc = new Scanner(System.in); long f0,f1,f2,n; f0 = sc.nextInt(); f1 = sc.nextInt(); n = sc.nextInt(); f2 = f0^f1; if(n%3 == 0){ System.out.println(f0); }else if (n%3 ==1){ System.out.println(f1); }else{ System.out.println(f2); } } }