結果

問題 No.1699 Unfair RPS
ユーザー bluemeganebluemegane
提出日時 2021-10-08 22:07:55
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 1,912 ms
コンパイル使用メモリ 62,600 KB
実行使用メモリ 22,612 KB
最終ジャッジ日時 2023-09-30 10:21:23
合計ジャッジ時間 3,095 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
20,416 KB
testcase_01 AC 43 ms
22,528 KB
testcase_02 AC 44 ms
20,544 KB
testcase_03 AC 48 ms
20,584 KB
testcase_04 AC 46 ms
20,424 KB
testcase_05 AC 43 ms
22,612 KB
testcase_06 AC 50 ms
20,652 KB
testcase_07 AC 44 ms
22,564 KB
testcase_08 AC 43 ms
22,464 KB
testcase_09 AC 42 ms
20,428 KB
testcase_10 AC 43 ms
20,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

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