結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー sysnote8mainsysnote8main
提出日時 2023-05-07 18:33:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 2,987 ms
コンパイル使用メモリ 77,808 KB
実行使用メモリ 54,564 KB
最終ジャッジ日時 2024-05-03 15:53:48
合計ジャッジ時間 8,207 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,524 KB
testcase_01 AC 114 ms
54,124 KB
testcase_02 AC 115 ms
53,944 KB
testcase_03 AC 122 ms
54,352 KB
testcase_04 AC 109 ms
52,688 KB
testcase_05 AC 121 ms
54,016 KB
testcase_06 AC 125 ms
54,092 KB
testcase_07 AC 120 ms
53,928 KB
testcase_08 AC 112 ms
53,884 KB
testcase_09 AC 114 ms
54,232 KB
testcase_10 AC 108 ms
53,524 KB
testcase_11 AC 114 ms
54,156 KB
testcase_12 AC 110 ms
53,816 KB
testcase_13 AC 112 ms
53,856 KB
testcase_14 AC 111 ms
53,756 KB
testcase_15 AC 103 ms
53,020 KB
testcase_16 AC 110 ms
53,700 KB
testcase_17 AC 104 ms
54,564 KB
testcase_18 AC 111 ms
53,956 KB
testcase_19 AC 130 ms
54,112 KB
testcase_20 AC 123 ms
54,036 KB
testcase_21 AC 124 ms
53,988 KB
testcase_22 AC 122 ms
54,144 KB
testcase_23 AC 117 ms
53,944 KB
testcase_24 AC 114 ms
53,896 KB
testcase_25 AC 108 ms
54,212 KB
testcase_26 AC 119 ms
53,996 KB
testcase_27 AC 113 ms
54,112 KB
testcase_28 AC 119 ms
53,812 KB
testcase_29 AC 121 ms
54,200 KB
testcase_30 AC 110 ms
54,216 KB
testcase_31 AC 117 ms
53,860 KB
testcase_32 AC 113 ms
54,056 KB
testcase_33 AC 102 ms
52,976 KB
testcase_34 AC 112 ms
53,920 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