結果

問題 No.1699 Unfair RPS
ユーザー merlinmerlin
提出日時 2021-10-08 21:51:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 4,539 ms
コンパイル使用メモリ 72,328 KB
実行使用メモリ 49,688 KB
最終ジャッジ日時 2023-09-30 09:48:31
合計ジャッジ時間 4,580 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
49,260 KB
testcase_01 AC 36 ms
49,352 KB
testcase_02 AC 36 ms
49,688 KB
testcase_03 AC 36 ms
49,344 KB
testcase_04 AC 36 ms
49,268 KB
testcase_05 AC 36 ms
49,444 KB
testcase_06 AC 36 ms
49,272 KB
testcase_07 AC 39 ms
47,428 KB
testcase_08 AC 36 ms
49,252 KB
testcase_09 AC 37 ms
49,436 KB
testcase_10 AC 36 ms
49,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        String s[]=bu.readLine().split(" ");
        int a=Integer.parseInt(s[0]),b=Integer.parseInt(s[1]);
        if(a==b) sb.append("Yes\n");
        else sb.append("No\n");
        System.out.print(sb);
    }
}
0