結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー みーすけみーすけ
提出日時 2021-10-03 18:26:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 1,999 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-07-21 13:26:01
合計ジャッジ時間 7,838 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,416 KB
testcase_01 AC 134 ms
41,260 KB
testcase_02 AC 132 ms
41,164 KB
testcase_03 AC 131 ms
41,296 KB
testcase_04 AC 133 ms
40,908 KB
testcase_05 AC 131 ms
41,428 KB
testcase_06 AC 132 ms
41,068 KB
testcase_07 AC 130 ms
41,208 KB
testcase_08 AC 129 ms
41,568 KB
testcase_09 AC 129 ms
41,340 KB
testcase_10 AC 132 ms
41,104 KB
testcase_11 AC 133 ms
41,256 KB
testcase_12 AC 134 ms
41,272 KB
testcase_13 AC 132 ms
41,400 KB
testcase_14 AC 131 ms
40,960 KB
testcase_15 AC 131 ms
41,068 KB
testcase_16 AC 134 ms
41,244 KB
testcase_17 AC 130 ms
41,064 KB
testcase_18 AC 131 ms
40,932 KB
testcase_19 AC 132 ms
41,416 KB
testcase_20 AC 132 ms
41,168 KB
testcase_21 AC 129 ms
41,008 KB
testcase_22 AC 133 ms
40,896 KB
testcase_23 AC 136 ms
41,372 KB
testcase_24 AC 129 ms
41,440 KB
testcase_25 AC 130 ms
41,040 KB
testcase_26 AC 133 ms
41,036 KB
testcase_27 AC 132 ms
41,252 KB
testcase_28 AC 137 ms
41,612 KB
testcase_29 AC 135 ms
41,076 KB
testcase_30 AC 135 ms
41,080 KB
testcase_31 AC 136 ms
41,260 KB
testcase_32 AC 134 ms
41,416 KB
testcase_33 AC 137 ms
41,164 KB
testcase_34 AC 136 ms
41,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int s = sc.nextInt();
        int t = sc.nextInt();
        String c = sc.next();
        System.out.println(
                (c.equals("<") && s < t) || (c.equals("=") && s == t) || (c.equals(">") && s > t) ? "YES" : "NO");
    }
}
0