結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー マサマサ
提出日時 2022-01-11 15:42:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 3,986 ms
コンパイル使用メモリ 76,296 KB
実行使用メモリ 54,492 KB
最終ジャッジ日時 2024-11-14 11:39:09
合計ジャッジ時間 10,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,780 KB
testcase_01 AC 126 ms
53,916 KB
testcase_02 AC 129 ms
54,028 KB
testcase_03 AC 130 ms
53,916 KB
testcase_04 AC 129 ms
53,996 KB
testcase_05 AC 130 ms
54,180 KB
testcase_06 AC 131 ms
53,936 KB
testcase_07 AC 131 ms
54,264 KB
testcase_08 AC 130 ms
54,492 KB
testcase_09 AC 132 ms
53,980 KB
testcase_10 AC 129 ms
54,412 KB
testcase_11 AC 128 ms
54,204 KB
testcase_12 AC 129 ms
54,108 KB
testcase_13 AC 130 ms
54,236 KB
testcase_14 AC 128 ms
54,036 KB
testcase_15 AC 129 ms
54,024 KB
testcase_16 AC 131 ms
54,040 KB
testcase_17 AC 132 ms
54,204 KB
testcase_18 AC 130 ms
54,012 KB
testcase_19 AC 131 ms
54,376 KB
testcase_20 AC 132 ms
54,004 KB
testcase_21 AC 133 ms
54,088 KB
testcase_22 AC 132 ms
54,064 KB
testcase_23 AC 131 ms
53,900 KB
testcase_24 AC 131 ms
53,992 KB
testcase_25 AC 132 ms
54,104 KB
testcase_26 AC 133 ms
54,308 KB
testcase_27 AC 130 ms
54,328 KB
testcase_28 AC 131 ms
54,040 KB
testcase_29 AC 129 ms
53,988 KB
testcase_30 AC 130 ms
54,124 KB
testcase_31 AC 130 ms
54,080 KB
testcase_32 AC 130 ms
54,164 KB
testcase_33 AC 130 ms
54,340 KB
testcase_34 AC 134 ms
54,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Ex {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int s = sc.nextInt();
		int t = sc.nextInt();

		String compare;
		if (s == t) {
			compare = "=";
		} else if (s < t) {
			compare = "<";
		} else {
			compare = ">";
		}

		String c = sc.next();
		if (c.equals(compare)) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}

	}
}
0