結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー | watarimaycry2 |
提出日時 | 2020-06-26 19:00:06 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 55 ms / 5,000 ms |
コード長 | 3,165 bytes |
コンパイル時間 | 3,049 ms |
コンパイル使用メモリ | 79,740 KB |
実行使用メモリ | 37,244 KB |
最終ジャッジ日時 | 2024-07-04 13:36:52 |
合計ジャッジ時間 | 3,948 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
37,244 KB |
testcase_01 | AC | 49 ms
36,964 KB |
testcase_02 | AC | 48 ms
36,764 KB |
testcase_03 | AC | 55 ms
37,168 KB |
testcase_04 | AC | 51 ms
37,056 KB |
testcase_05 | AC | 47 ms
37,084 KB |
testcase_06 | AC | 48 ms
36,888 KB |
testcase_07 | AC | 48 ms
37,176 KB |
testcase_08 | AC | 47 ms
36,764 KB |
testcase_09 | AC | 50 ms
37,120 KB |
testcase_10 | AC | 49 ms
37,216 KB |
testcase_11 | AC | 51 ms
36,636 KB |
testcase_12 | AC | 52 ms
37,176 KB |
testcase_13 | AC | 51 ms
37,096 KB |
ソースコード
import java.util.*;import java.io.*;import java.math.*; public class Main{ //↓見なくていいよ!ここから------------------------------------------ static class InputIterator{ ArrayList<String> inputLine = new ArrayList<String>(1024); int index = 0; int max; InputIterator(){ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); while(true){ String read; try{ read = br.readLine(); }catch(IOException e){ read = null; } if(read != null){ inputLine.add(read); }else{ break; } } max = inputLine.size(); } boolean hasNext(){return (index < max);} String next(){ if(hasNext()){ String returnStr = inputLine.get(index); index++; return returnStr; }else{ throw new IndexOutOfBoundsException("これ以上入力はないよ"); } } } static InputIterator ii = new InputIterator();//リアクティブでは使えないので諦めてScanner使うこと static PrintWriter out = new PrintWriter(System.out); static void flush(){out.flush();} static void myout(Object t){out.println(t);} static void myerr(Object t){System.err.print("debug:");System.err.println(t);} static String next(){return ii.next();} static int nextInt(){return Integer.parseInt(next());} static long nextLong(){return Long.parseLong(next());} static ArrayList<String> nextStrArray(){return myHanSpSplit(next());} static ArrayList<String> myHanSpSplit(String str){return new ArrayList<String>(Arrays.asList(str.split(" ")));} static ArrayList<String> nextCharArray(){return mySingleSplit(next());} static ArrayList<String> mySingleSplit(String str){return new ArrayList<String>(Arrays.asList(str.split("")));} static ArrayList<Integer> nextIntArray(){ ArrayList<Integer> ret = new ArrayList<Integer>(); ArrayList<String> input = nextStrArray(); for(int i = 0; i < input.size(); i++){ ret.add(Integer.parseInt(input.get(i))); } return ret; } static ArrayList<Long> nextLongArray(){ ArrayList<Long> ret = new ArrayList<Long>(); ArrayList<String> input = nextStrArray(); for(int i = 0; i < input.size(); i++){ ret.add(Long.parseLong(input.get(i))); } return ret; } static String kaigyoToStr(String[] list){return String.join("\n",list);} static String kaigyoToStr(ArrayList<String> list){return String.join("\n",list);} static String hanSpToStr(String[] list){return String.join(" ",list);} static String hanSpToStr(ArrayList<String> list){return String.join(" ",list);} public static void main(String[] args){ solve(); flush(); } //↑見なくていいよ!ここまで------------------------------------------ static void solve(){//ここがメイン関数代わり ArrayList<Long> one = nextLongArray(); long f1 = one.get(0); long f2 = one.get(1); long N = one.get(2); long f3 = f1 ^ f2; if(N % 3 == 0){ myout(f1); }else if(N % 3 == 1){ myout(f2); }else{ myout(f3); } } //Method addition frame start //Method addition frame end }