結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー bluemeganebluemegane
提出日時 2021-06-11 22:08:49
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 1,440 ms
コンパイル使用メモリ 65,084 KB
実行使用メモリ 22,916 KB
最終ジャッジ日時 2023-08-21 12:39:48
合計ジャッジ時間 4,628 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
22,728 KB
testcase_01 AC 55 ms
20,784 KB
testcase_02 AC 54 ms
20,684 KB
testcase_03 AC 54 ms
20,880 KB
testcase_04 AC 55 ms
22,780 KB
testcase_05 AC 55 ms
20,696 KB
testcase_06 AC 55 ms
20,796 KB
testcase_07 AC 55 ms
22,720 KB
testcase_08 AC 55 ms
20,720 KB
testcase_09 AC 55 ms
20,700 KB
testcase_10 AC 55 ms
22,732 KB
testcase_11 AC 55 ms
20,736 KB
testcase_12 AC 55 ms
22,652 KB
testcase_13 AC 55 ms
20,648 KB
testcase_14 AC 54 ms
20,724 KB
testcase_15 AC 54 ms
20,672 KB
testcase_16 AC 54 ms
22,740 KB
testcase_17 AC 54 ms
20,680 KB
testcase_18 AC 54 ms
20,756 KB
testcase_19 AC 55 ms
22,820 KB
testcase_20 AC 54 ms
20,776 KB
testcase_21 AC 54 ms
22,732 KB
testcase_22 AC 54 ms
20,700 KB
testcase_23 AC 55 ms
20,848 KB
testcase_24 AC 54 ms
22,916 KB
testcase_25 AC 55 ms
20,724 KB
testcase_26 AC 54 ms
18,648 KB
testcase_27 AC 55 ms
20,788 KB
testcase_28 AC 53 ms
18,644 KB
testcase_29 AC 53 ms
20,788 KB
testcase_30 AC 54 ms
20,724 KB
testcase_31 AC 55 ms
20,888 KB
testcase_32 AC 55 ms
22,824 KB
testcase_33 AC 55 ms
20,672 KB
testcase_34 AC 53 ms
18,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var s = int.Parse(line[0]);
        var t = int.Parse(line[1]);
        var c = line[2];
        bool ans;
        if (c == ">") ans = s > t;
        else if (c == "<") ans = s < t;
        else ans = s == t;
        Console.WriteLine(ans ? "YES" : "NO");
    }
}
0