結果

問題 No.1527 Input Constant is Good
ユーザー bluemeganebluemegane
提出日時 2021-06-04 20:10:14
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 2,473 ms
コンパイル使用メモリ 63,100 KB
実行使用メモリ 20,888 KB
最終ジャッジ日時 2023-08-12 08:46:36
合計ジャッジ時間 2,397 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
20,768 KB
testcase_01 AC 56 ms
20,776 KB
testcase_02 AC 56 ms
20,888 KB
testcase_03 AC 56 ms
20,692 KB
testcase_04 AC 56 ms
20,784 KB
testcase_05 AC 56 ms
20,760 KB
testcase_06 AC 58 ms
20,784 KB
testcase_07 AC 57 ms
20,788 KB
testcase_08 AC 56 ms
18,768 KB
testcase_09 AC 56 ms
18,632 KB
testcase_10 AC 56 ms
20,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = int.Parse(line[0]);
        var b = int.Parse(line[1]);
        Console.WriteLine(a <= b ? "Yes" : "No");
    }
}
0