結果

問題 No.683 Two Operations No.3
ユーザー 37zigen37zigen
提出日時 2018-05-12 16:08:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 77,552 KB
実行使用メモリ 41,632 KB
最終ジャッジ日時 2024-06-28 09:58:34
合計ジャッジ時間 5,118 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
40,960 KB
testcase_01 AC 143 ms
41,068 KB
testcase_02 AC 133 ms
41,484 KB
testcase_03 AC 135 ms
41,324 KB
testcase_04 AC 134 ms
41,436 KB
testcase_05 AC 133 ms
41,576 KB
testcase_06 AC 134 ms
41,312 KB
testcase_07 AC 136 ms
41,632 KB
testcase_08 AC 135 ms
41,524 KB
testcase_09 AC 136 ms
41,100 KB
testcase_10 AC 134 ms
41,628 KB
testcase_11 AC 136 ms
41,548 KB
testcase_12 AC 134 ms
41,028 KB
testcase_13 AC 135 ms
41,364 KB
testcase_14 AC 137 ms
41,252 KB
testcase_15 AC 137 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Main {

	void run() {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		long m = sc.nextLong();
		System.out.println(dfs(n, m) ? "Yes" : "No");
	}

	boolean dfs(long n, long m) {
		if (n % 2 == 1 && m % 2 == 1)
			return false;
		if (n == 0 || m == 0)
			return true;
		boolean ret = false;
		if (n % 2 == 1 && m % 2 == 0) {
			ret |= dfs(n - 1, m / 2);
		} else if (n % 2 == 0 && m % 2 == 1) {
			ret |= dfs(n / 2, m - 1);
		} else if (n % 2 == 0 && m % 2 == 0) {
			ret |= dfs(n / 2, m - 1);
			ret |= dfs(n - 1, m / 2);
		}
		return ret;
	}

	public static void main(String[] args) {
		new Main().run();
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0