結果

問題 No.64 XORフィボナッチ数列
ユーザー kou6839kou6839
提出日時 2014-11-21 22:29:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 342 bytes
コンパイル時間 1,923 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 41,816 KB
最終ジャッジ日時 2024-06-10 21:32:29
合計ジャッジ時間 4,017 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,080 KB
testcase_01 AC 92 ms
39,744 KB
testcase_02 AC 98 ms
39,872 KB
testcase_03 AC 106 ms
40,724 KB
testcase_04 AC 114 ms
41,444 KB
testcase_05 AC 112 ms
41,816 KB
testcase_06 AC 102 ms
40,284 KB
testcase_07 AC 110 ms
41,036 KB
testcase_08 AC 109 ms
41,504 KB
testcase_09 AC 102 ms
40,284 KB
testcase_10 AC 109 ms
40,900 KB
testcase_11 AC 112 ms
41,300 KB
testcase_12 AC 117 ms
41,360 KB
testcase_13 AC 108 ms
41,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		long m=sc.nextLong();
		long l=sc.nextLong();
		long n2=n^m;
		if(l%3==0) System.out.println(n);
		else if(l%3==1) System.out.println(m);
		else System.out.println(n2);
	}
}	
0