結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー | shinwisteria |
提出日時 | 2019-01-21 23:17:18 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 134 ms / 5,000 ms |
コード長 | 368 bytes |
コンパイル時間 | 3,678 ms |
コンパイル使用メモリ | 73,808 KB |
実行使用メモリ | 41,548 KB |
最終ジャッジ日時 | 2024-09-15 13:23:32 |
合計ジャッジ時間 | 5,986 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
41,116 KB |
testcase_01 | AC | 130 ms
41,512 KB |
testcase_02 | AC | 130 ms
41,188 KB |
testcase_03 | AC | 128 ms
41,216 KB |
testcase_04 | AC | 128 ms
41,336 KB |
testcase_05 | AC | 114 ms
40,112 KB |
testcase_06 | AC | 128 ms
41,352 KB |
testcase_07 | AC | 118 ms
40,484 KB |
testcase_08 | AC | 127 ms
41,456 KB |
testcase_09 | AC | 130 ms
41,548 KB |
testcase_10 | AC | 127 ms
41,196 KB |
testcase_11 | AC | 128 ms
40,940 KB |
testcase_12 | AC | 127 ms
41,240 KB |
testcase_13 | AC | 128 ms
41,004 KB |
ソースコード
import java.util.Scanner; public class No64 { public static void main(String[] args) { Scanner s = new Scanner(System.in); long f0 = s.nextLong() , f1 = s.nextLong() , N = s.nextLong(); s.close(); long 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); } } }