結果

問題 No.683 Two Operations No.3
ユーザー GrenacheGrenache
提出日時 2018-05-11 22:54:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 1,083 bytes
コンパイル時間 4,318 ms
コンパイル使用メモリ 79,876 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-06-28 09:55:33
合計ジャッジ時間 7,089 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,124 KB
testcase_01 AC 136 ms
54,308 KB
testcase_02 AC 136 ms
54,488 KB
testcase_03 AC 137 ms
54,012 KB
testcase_04 AC 143 ms
53,836 KB
testcase_05 AC 139 ms
54,284 KB
testcase_06 AC 136 ms
53,988 KB
testcase_07 AC 139 ms
54,036 KB
testcase_08 AC 135 ms
53,800 KB
testcase_09 AC 138 ms
54,208 KB
testcase_10 AC 140 ms
54,276 KB
testcase_11 AC 139 ms
53,856 KB
testcase_12 AC 138 ms
54,172 KB
testcase_13 AC 139 ms
54,140 KB
testcase_14 AC 138 ms
54,140 KB
testcase_15 AC 138 ms
53,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder683 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		long a = sc.nextLong();
		long b = sc.nextLong();

		Deque<Long> sta = new ArrayDeque<>();
		Deque<Long> stb = new ArrayDeque<>();
		sta.push(a);
		stb.push(b);
		while (!sta.isEmpty()) {
			long ea = sta.pop();
			long eb = stb.pop();

			if (ea == 0 || eb == 0) {
				pr.println("Yes");
				return;
			}

			if (ea > 0 && eb % 2 == 0) {
				sta.push(ea - 1);
				stb.push(eb / 2);
			}
			if (eb > 0 && ea % 2 == 0) {
				sta.push(ea / 2);
				stb.push(eb - 1);
			}
		}

		pr.println("No");
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes()));
		pr = new Printer(System.out);

		solve();

//		pr.close();
		pr.flush();
//		sc.close();
	}

	static String INPUT = null;

	private static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0