結果

問題 No.1699 Unfair RPS
ユーザー harurunharurun
提出日時 2021-09-13 20:40:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 2,467 ms
コンパイル使用メモリ 72,328 KB
実行使用メモリ 56,120 KB
最終ジャッジ日時 2023-09-30 09:31:56
合計ジャッジ時間 4,747 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
55,460 KB
testcase_01 AC 126 ms
55,452 KB
testcase_02 AC 126 ms
55,524 KB
testcase_03 AC 127 ms
56,048 KB
testcase_04 AC 128 ms
55,548 KB
testcase_05 AC 128 ms
55,656 KB
testcase_06 AC 127 ms
55,760 KB
testcase_07 AC 128 ms
55,620 KB
testcase_08 AC 130 ms
56,120 KB
testcase_09 AC 129 ms
55,404 KB
testcase_10 AC 126 ms
55,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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