結果
問題 | No.1556 Power Equality |
ユーザー | Asahi |
提出日時 | 2023-02-04 18:08:29 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 973 bytes |
コンパイル時間 | 1,996 ms |
コンパイル使用メモリ | 77,276 KB |
実行使用メモリ | 149,912 KB |
最終ジャッジ日時 | 2024-07-03 14:59:05 |
合計ジャッジ時間 | 4,150 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 111 ms
53,164 KB |
testcase_01 | AC | 121 ms
53,836 KB |
testcase_02 | AC | 127 ms
54,036 KB |
testcase_03 | AC | 138 ms
149,912 KB |
testcase_04 | AC | 127 ms
54,056 KB |
testcase_05 | AC | 123 ms
53,920 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 133 ms
54,024 KB |
testcase_09 | AC | 128 ms
54,120 KB |
testcase_10 | AC | 110 ms
52,932 KB |
ソースコード
import java.util.*; import java.io.*; import java.math.*; import java.util.stream.Stream; public class Main{ /* 入出力 */ static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in)); static StringTokenizer st; static PrintWriter output = new PrintWriter(System.out); static Scanner sc = new Scanner(System.in); /* 定数 */ static final int [] y4 = {0,1,0,-1}; static final int [] x4 = {1,0,-1,0}; static final int INF1 = Integer.MAX_VALUE; static final long INF2 = Long.MAX_VALUE; static final long MOD1 = (long)1e9+7; static final long MOD2 = 998244353; /* Main */ public static void main(String[] args) throws IOException{ int a = sc.nextInt(); int b = sc.nextInt(); if(BigInteger.valueOf(a).pow(b).compareTo(BigInteger.valueOf(b).pow(a)) == 0) { output.print("Yes"); } else output.print("No"); output.flush(); } }