結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー sysnote8mainsysnote8main
提出日時 2023-05-07 18:33:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 2,947 ms
コンパイル使用メモリ 75,044 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-11-24 18:05:07
合計ジャッジ時間 8,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,284 KB
testcase_01 AC 116 ms
54,160 KB
testcase_02 AC 116 ms
54,088 KB
testcase_03 AC 117 ms
53,884 KB
testcase_04 AC 119 ms
54,204 KB
testcase_05 AC 118 ms
54,112 KB
testcase_06 AC 108 ms
53,060 KB
testcase_07 AC 120 ms
54,148 KB
testcase_08 AC 122 ms
54,224 KB
testcase_09 AC 120 ms
54,060 KB
testcase_10 AC 117 ms
54,184 KB
testcase_11 AC 115 ms
53,940 KB
testcase_12 AC 118 ms
54,148 KB
testcase_13 AC 106 ms
53,068 KB
testcase_14 AC 119 ms
54,216 KB
testcase_15 AC 119 ms
54,148 KB
testcase_16 AC 119 ms
54,192 KB
testcase_17 AC 123 ms
54,216 KB
testcase_18 AC 121 ms
54,132 KB
testcase_19 AC 106 ms
54,268 KB
testcase_20 AC 121 ms
54,136 KB
testcase_21 AC 112 ms
53,536 KB
testcase_22 AC 116 ms
53,884 KB
testcase_23 AC 122 ms
54,156 KB
testcase_24 AC 107 ms
53,084 KB
testcase_25 AC 117 ms
54,036 KB
testcase_26 AC 120 ms
53,892 KB
testcase_27 AC 124 ms
54,000 KB
testcase_28 AC 110 ms
53,172 KB
testcase_29 AC 119 ms
54,012 KB
testcase_30 AC 123 ms
53,748 KB
testcase_31 AC 122 ms
53,968 KB
testcase_32 AC 119 ms
53,968 KB
testcase_33 AC 111 ms
53,516 KB
testcase_34 AC 117 ms
53,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class StringComparator {
    public static void log(Object obj) {
        System.out.println(obj.toString());
    }
    public static boolean isCheck(int a, int b, String type) {
        if(type.equals("=")) {
            return a==b;
        }
        if(type.equals("<")) {
            return a<b;
        }
        if(type.equals(">")) {
            return a>b;
        }
        return false;
    }
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int s = sc.nextInt();
        int t = sc.nextInt();
        String c = sc.next();
        if(isCheck(s,t,c)) {
            log("YES");
        } else {
            log("NO");
        }
    }
}
0