結果

問題 No.2322 MMA文字列
ユーザー bluemeganebluemegane
提出日時 2023-06-03 07:23:44
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 172 bytes
コンパイル時間 968 ms
コンパイル使用メモリ 63,272 KB
実行使用メモリ 22,588 KB
最終ジャッジ日時 2023-08-28 07:38:33
合計ジャッジ時間 3,164 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
20,540 KB
testcase_01 AC 48 ms
20,576 KB
testcase_02 WA -
testcase_03 AC 47 ms
20,640 KB
testcase_04 AC 48 ms
22,504 KB
testcase_05 AC 47 ms
20,392 KB
testcase_06 AC 47 ms
20,616 KB
testcase_07 AC 49 ms
22,528 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 49 ms
20,408 KB
testcase_12 AC 49 ms
22,588 KB
testcase_13 AC 49 ms
20,564 KB
testcase_14 AC 48 ms
20,640 KB
testcase_15 AC 48 ms
20,552 KB
testcase_16 WA -
testcase_17 AC 48 ms
20,468 KB
testcase_18 AC 49 ms
20,488 KB
testcase_19 AC 49 ms
22,568 KB
testcase_20 AC 48 ms
20,460 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

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