結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー harurunharurun
提出日時 2021-04-17 02:28:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 4,246 ms
コンパイル使用メモリ 74,580 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-05-08 14:49:30
合計ジャッジ時間 7,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,448 KB
testcase_01 AC 109 ms
41,148 KB
testcase_02 AC 114 ms
41,196 KB
testcase_03 AC 115 ms
41,304 KB
testcase_04 AC 113 ms
40,748 KB
testcase_05 AC 99 ms
39,908 KB
testcase_06 AC 109 ms
40,728 KB
testcase_07 AC 110 ms
41,060 KB
testcase_08 AC 110 ms
40,884 KB
testcase_09 AC 113 ms
41,080 KB
testcase_10 AC 110 ms
41,252 KB
testcase_11 AC 111 ms
41,256 KB
testcase_12 AC 108 ms
41,428 KB
testcase_13 AC 109 ms
41,440 KB
testcase_14 AC 96 ms
39,972 KB
testcase_15 AC 110 ms
41,120 KB
testcase_16 AC 111 ms
41,264 KB
testcase_17 AC 92 ms
39,552 KB
testcase_18 AC 108 ms
41,000 KB
testcase_19 AC 109 ms
41,084 KB
testcase_20 AC 114 ms
41,280 KB
testcase_21 AC 109 ms
40,932 KB
testcase_22 AC 114 ms
40,776 KB
testcase_23 AC 112 ms
41,088 KB
testcase_24 AC 111 ms
40,884 KB
testcase_25 AC 112 ms
41,092 KB
testcase_26 AC 102 ms
40,044 KB
testcase_27 AC 113 ms
41,244 KB
testcase_28 AC 111 ms
40,848 KB
testcase_29 AC 99 ms
39,744 KB
testcase_30 AC 95 ms
40,044 KB
testcase_31 AC 95 ms
39,988 KB
testcase_32 AC 113 ms
41,132 KB
testcase_33 AC 113 ms
40,940 KB
testcase_34 AC 112 ms
41,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.lang.String;
class Main{
    public static void main(String[] args){
        Scanner scan=new Scanner(System.in);
        int S=Integer.parseInt(scan.next());
        int T=Integer.parseInt(scan.next());
        String c=scan.next();
        if((c.equals("=")&&S==T)||(c.equals("<")&&S<T)||(c.equals(">")&&S>T)){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }
        return;
    }
}
0