結果

問題 No.1556 Power Equality
ユーザー ks2mks2m
提出日時 2021-06-25 21:25:00
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 498 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-06-25 09:07:27
合計ジャッジ時間 4,449 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,844 KB
testcase_01 WA -
testcase_02 AC 136 ms
53,884 KB
testcase_03 AC 139 ms
53,892 KB
testcase_04 AC 138 ms
54,012 KB
testcase_05 AC 137 ms
54,156 KB
testcase_06 AC 135 ms
54,436 KB
testcase_07 AC 136 ms
53,876 KB
testcase_08 AC 136 ms
52,816 KB
testcase_09 AC 143 ms
53,944 KB
testcase_10 AC 138 ms
54,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		sc.close();

		if (a == b) {
			System.out.println("Yes");
		} else {
			int x = Math.min(a, b);
			int y = Math.max(a, b);
			if (x == 2) {
				for (int i = 2; i < 31; i++) {
					if (1 << i == y) {
						System.out.println("Yes");
						return;
					}
				}
			}
			System.out.println("No");
		}
	}
}
0