結果

問題 No.1699 Unfair RPS
ユーザー merlinmerlin
提出日時 2021-10-08 21:51:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 74,660 KB
実行使用メモリ 37,092 KB
最終ジャッジ日時 2024-07-23 03:53:20
合計ジャッジ時間 3,391 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
37,048 KB
testcase_01 AC 57 ms
36,836 KB
testcase_02 AC 58 ms
36,528 KB
testcase_03 AC 57 ms
36,888 KB
testcase_04 AC 58 ms
37,068 KB
testcase_05 AC 57 ms
36,848 KB
testcase_06 AC 55 ms
36,956 KB
testcase_07 AC 54 ms
37,092 KB
testcase_08 AC 55 ms
36,788 KB
testcase_09 AC 54 ms
37,044 KB
testcase_10 AC 53 ms
36,640 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