結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー | chiho_miyako |
提出日時 | 2015-04-11 22:12:44 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,917 bytes |
コンパイル時間 | 2,307 ms |
コンパイル使用メモリ | 77,804 KB |
実行使用メモリ | 41,568 KB |
最終ジャッジ日時 | 2024-07-04 13:39:04 |
合計ジャッジ時間 | 4,667 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 113 ms
40,244 KB |
testcase_01 | AC | 121 ms
40,988 KB |
testcase_02 | AC | 119 ms
40,876 KB |
testcase_03 | AC | 109 ms
39,548 KB |
testcase_04 | AC | 116 ms
39,976 KB |
testcase_05 | RE | - |
testcase_06 | AC | 124 ms
41,304 KB |
testcase_07 | AC | 126 ms
41,344 KB |
testcase_08 | RE | - |
testcase_09 | AC | 120 ms
41,344 KB |
testcase_10 | AC | 108 ms
40,308 KB |
testcase_11 | RE | - |
testcase_12 | AC | 121 ms
41,184 KB |
testcase_13 | AC | 119 ms
41,348 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner koko = new Scanner(System.in); long zero = koko.nextLong(); long one = koko.nextLong(); long n = koko.nextLong(); if(n%3==0){ System.out.println(zero); }else if(n%3==1){ System.out.println(one); }else{ String tz = Long.toBinaryString(zero); String to = Long.toBinaryString(one); int min = Math.min(tz.length(),to.length()); int max = Math.max(tz.length(),to.length()); char[] ans = new char[max]; if(tz.length()>to.length()){ for(int i=0; i<min; i++){ if(tz.charAt(max-1-i)==to.charAt(min-1-i)){ ans[max-1-i] = '0'; }else{ ans[max-1-i] = '1'; } } for(int i=0; i<max-min; i++){ ans[i] = tz.charAt(i); } }else if(tz.length()<to.length()){ for(int i=0; i<min; i++){ if(tz.charAt(min-1-i)==to.charAt(max-1-i)){ ans[max-1-i] = '0'; }else{ ans[max-1-i] = '1'; } } for(int i=0; i<max-min; i++){ ans[i] = to.charAt(i); } }else{ for(int i=0; i<min; i++){ if(tz.charAt(min-1-i)==to.charAt(max-1-i)){ ans[max-1-i] = '0'; }else{ ans[max-1-i] = '1'; } } } String an = String.valueOf(ans); long a = Integer.parseInt(an,2); System.out.println(a); } } }