結果

問題 No.780 オフ会
ユーザー kohaku_kohaku
提出日時 2019-02-19 21:52:39
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 2,291 ms
コンパイル使用メモリ 75,100 KB
実行使用メモリ 55,788 KB
最終ジャッジ日時 2024-10-12 21:29:17
合計ジャッジ時間 6,214 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        if( b-a > 0) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
0