結果

問題 No.1699 Unfair RPS
ユーザー ks2mks2m
提出日時 2021-10-08 21:50:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 3,635 ms
コンパイル使用メモリ 72,104 KB
実行使用メモリ 55,784 KB
最終ジャッジ日時 2023-09-30 09:45:25
合計ジャッジ時間 5,920 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
55,552 KB
testcase_01 AC 132 ms
55,760 KB
testcase_02 AC 131 ms
55,364 KB
testcase_03 AC 141 ms
55,676 KB
testcase_04 AC 128 ms
55,656 KB
testcase_05 AC 128 ms
55,480 KB
testcase_06 AC 128 ms
55,456 KB
testcase_07 AC 133 ms
55,656 KB
testcase_08 AC 135 ms
55,552 KB
testcase_09 AC 131 ms
55,784 KB
testcase_10 AC 129 ms
55,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		if (b == c) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}
	}
}
0