結果

問題 No.1556 Power Equality
ユーザー ks2mks2m
提出日時 2021-06-25 21:20:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 258 bytes
コンパイル時間 2,792 ms
コンパイル使用メモリ 74,876 KB
実行使用メモリ 54,524 KB
最終ジャッジ日時 2024-06-25 08:05:28
合計ジャッジ時間 4,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,244 KB
testcase_01 AC 126 ms
54,068 KB
testcase_02 AC 128 ms
54,112 KB
testcase_03 AC 125 ms
53,844 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 127 ms
53,732 KB
testcase_07 AC 128 ms
53,672 KB
testcase_08 AC 129 ms
54,276 KB
testcase_09 AC 114 ms
53,052 KB
testcase_10 AC 123 ms
53,952 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