結果

問題 No.1699 Unfair RPS
ユーザー Subaru314Subaru314
提出日時 2022-01-05 17:25:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 2,198 ms
コンパイル使用メモリ 74,220 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-04-23 21:16:26
合計ジャッジ時間 4,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,948 KB
testcase_01 AC 113 ms
53,844 KB
testcase_02 AC 120 ms
54,036 KB
testcase_03 AC 111 ms
53,012 KB
testcase_04 AC 125 ms
54,152 KB
testcase_05 AC 123 ms
54,180 KB
testcase_06 AC 108 ms
52,868 KB
testcase_07 AC 115 ms
53,824 KB
testcase_08 AC 129 ms
54,240 KB
testcase_09 AC 130 ms
54,064 KB
testcase_10 AC 120 ms
52,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

}
0