結果

問題 No.1556 Power Equality
ユーザー ks2mks2m
提出日時 2021-06-25 21:20:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 258 bytes
コンパイル時間 4,063 ms
コンパイル使用メモリ 71,748 KB
実行使用メモリ 56,260 KB
最終ジャッジ日時 2023-09-07 13:59:37
合計ジャッジ時間 4,224 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
55,736 KB
testcase_01 AC 124 ms
55,796 KB
testcase_02 AC 123 ms
55,496 KB
testcase_03 AC 125 ms
55,956 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 126 ms
55,740 KB
testcase_07 AC 124 ms
56,028 KB
testcase_08 AC 122 ms
56,260 KB
testcase_09 AC 123 ms
55,484 KB
testcase_10 AC 120 ms
55,480 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();

		System.out.println(a == b ? "Yes" : "No");
	}
}
0