結果

問題 No.1699 Unfair RPS
ユーザー みーすけみーすけ
提出日時 2021-10-08 21:51:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 3,008 ms
コンパイル使用メモリ 71,340 KB
実行使用メモリ 56,104 KB
最終ジャッジ日時 2023-09-30 09:49:20
合計ジャッジ時間 5,502 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
55,652 KB
testcase_01 AC 123 ms
55,752 KB
testcase_02 AC 124 ms
55,848 KB
testcase_03 AC 123 ms
55,704 KB
testcase_04 AC 121 ms
56,064 KB
testcase_05 AC 121 ms
55,448 KB
testcase_06 AC 123 ms
55,848 KB
testcase_07 AC 122 ms
55,688 KB
testcase_08 AC 121 ms
56,104 KB
testcase_09 AC 120 ms
55,472 KB
testcase_10 AC 124 ms
55,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int b = sc.nextInt();
        int c = sc.nextInt();
        
        System.out.println(b==c ? "Yes" : "No");
    }
}
0