結果

問題 No.1367 文字列門松
ユーザー keymoonkeymoon
提出日時 2021-01-29 21:25:20
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 2,297 ms
コンパイル使用メモリ 99,572 KB
実行使用メモリ 26,392 KB
最終ジャッジ日時 2023-09-09 14:39:04
合計ジャッジ時間 5,663 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
24,336 KB
testcase_01 AC 87 ms
24,292 KB
testcase_02 AC 89 ms
24,300 KB
testcase_03 AC 88 ms
24,584 KB
testcase_04 AC 87 ms
26,392 KB
testcase_05 AC 88 ms
24,476 KB
testcase_06 AC 86 ms
24,312 KB
testcase_07 AC 83 ms
26,344 KB
testcase_08 AC 83 ms
22,284 KB
testcase_09 AC 83 ms
24,356 KB
testcase_10 AC 84 ms
24,292 KB
testcase_11 AC 85 ms
24,540 KB
testcase_12 AC 84 ms
26,280 KB
testcase_13 AC 85 ms
24,260 KB
testcase_14 AC 82 ms
24,292 KB
testcase_15 AC 82 ms
24,456 KB
testcase_16 AC 84 ms
24,376 KB
testcase_17 AC 83 ms
26,208 KB
testcase_18 AC 81 ms
26,356 KB
testcase_19 AC 84 ms
24,368 KB
testcase_20 AC 82 ms
24,280 KB
testcase_21 AC 82 ms
24,432 KB
testcase_22 AC 80 ms
26,376 KB
testcase_23 AC 80 ms
24,324 KB
testcase_24 AC 81 ms
24,320 KB
testcase_25 AC 80 ms
26,292 KB
testcase_26 AC 81 ms
26,296 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
public static class P
{
    public static void Main()
    {
        string s = Console.ReadLine();
        Console.WriteLine(Regex.IsMatch(s, "^k?a?d?o?m?a?t?s?u?$") ? "Yes" : "No");
    }
}
0