結果

問題 No.683 Two Operations No.3
ユーザー GrenacheGrenache
提出日時 2018-05-11 22:46:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,113 bytes
コンパイル時間 3,520 ms
コンパイル使用メモリ 75,376 KB
実行使用メモリ 57,736 KB
最終ジャッジ日時 2023-09-10 17:41:20
合計ジャッジ時間 8,060 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,344 KB
testcase_01 AC 130 ms
55,668 KB
testcase_02 AC 129 ms
55,716 KB
testcase_03 AC 129 ms
55,660 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

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) {
				ea--;
				eb /= 2;
				sta.push(ea);
				stb.push(eb);
			}
			if (eb > 0 && ea % 2 == 0) {
				eb--;
				ea /= 2;
				sta.push(ea);
				stb.push(eb);
			}
		}

		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