結果

問題 No.683 Two Operations No.3
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-18 23:26:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 3,716 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 54,224 KB
最終ジャッジ日時 2024-06-30 17:06:55
合計ジャッジ時間 6,099 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,020 KB
testcase_01 AC 123 ms
53,940 KB
testcase_02 AC 120 ms
54,116 KB
testcase_03 AC 121 ms
53,944 KB
testcase_04 AC 120 ms
53,828 KB
testcase_05 AC 122 ms
54,028 KB
testcase_06 AC 122 ms
54,224 KB
testcase_07 AC 123 ms
54,148 KB
testcase_08 AC 122 ms
54,124 KB
testcase_09 AC 122 ms
53,984 KB
testcase_10 AC 109 ms
52,712 KB
testcase_11 AC 125 ms
54,040 KB
testcase_12 AC 117 ms
53,732 KB
testcase_13 AC 123 ms
54,048 KB
testcase_14 AC 111 ms
52,668 KB
testcase_15 AC 122 ms
53,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No683{
	static boolean ans = false;
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		long A = sc.nextLong();
		long B = sc.nextLong();

		operate(A, B);
		System.out.println(ans? "Yes": "No");
	}
	private static void operate(long a, long b){
		if(a == 0 || b == 0){
			ans = true;
			return;
		}
		else if(a%2 == 0 && b%2 == 0){
			operate(a/2, b-1);
			operate(a-1, b/2);
		}else if(a%2 == 0 && b%2 != 0){
			operate(a/2, b-1);
		}else if(a%2 != 0 && b%2 == 0){
			operate(a-1, b/2);
		}
	}
}
0