結果

問題 No.1367 文字列門松
ユーザー さかぽんさかぽん
提出日時 2021-02-18 10:06:53
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 1,835 ms
コンパイル使用メモリ 99,532 KB
実行使用メモリ 26,476 KB
最終ジャッジ日時 2023-10-12 18:57:11
合計ジャッジ時間 6,583 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
22,452 KB
testcase_01 AC 90 ms
24,260 KB
testcase_02 AC 90 ms
24,504 KB
testcase_03 AC 92 ms
24,600 KB
testcase_04 AC 93 ms
26,296 KB
testcase_05 AC 92 ms
26,336 KB
testcase_06 AC 90 ms
22,328 KB
testcase_07 AC 90 ms
24,468 KB
testcase_08 AC 90 ms
24,384 KB
testcase_09 AC 90 ms
24,384 KB
testcase_10 AC 91 ms
24,520 KB
testcase_11 AC 90 ms
26,476 KB
testcase_12 AC 89 ms
24,508 KB
testcase_13 AC 90 ms
24,388 KB
testcase_14 AC 92 ms
26,400 KB
testcase_15 AC 90 ms
24,556 KB
testcase_16 AC 91 ms
24,544 KB
testcase_17 AC 90 ms
24,316 KB
testcase_18 AC 91 ms
24,472 KB
testcase_19 AC 90 ms
24,512 KB
testcase_20 AC 89 ms
24,460 KB
testcase_21 AC 90 ms
24,452 KB
testcase_22 AC 90 ms
22,408 KB
testcase_23 AC 91 ms
24,536 KB
testcase_24 AC 90 ms
24,436 KB
testcase_25 AC 91 ms
24,272 KB
testcase_26 AC 90 ms
22,320 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.Text.RegularExpressions;

class B
{
	static void Main() => Console.WriteLine(Solve() ? "Yes" : "No");
	static bool Solve() => Regex.IsMatch(Console.ReadLine(), "^k?a?d?o?m?a?t?s?u?$");
}
0