結果

問題 No.2201 p@$$w0rd
ユーザー bluemeganebluemegane
提出日時 2023-02-04 07:10:49
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 1,190 bytes
コンパイル時間 4,947 ms
コンパイル使用メモリ 109,964 KB
実行使用メモリ 25,576 KB
最終ジャッジ日時 2024-07-03 05:31:10
合計ジャッジ時間 4,027 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
23,764 KB
testcase_01 AC 24 ms
23,384 KB
testcase_02 AC 23 ms
23,392 KB
testcase_03 AC 23 ms
25,560 KB
testcase_04 AC 22 ms
23,652 KB
testcase_05 AC 23 ms
23,644 KB
testcase_06 AC 24 ms
23,600 KB
testcase_07 AC 23 ms
23,860 KB
testcase_08 AC 22 ms
23,896 KB
testcase_09 AC 23 ms
25,572 KB
testcase_10 AC 21 ms
23,512 KB
testcase_11 AC 23 ms
25,576 KB
testcase_12 AC 23 ms
23,404 KB
testcase_13 AC 22 ms
25,572 KB
testcase_14 AC 22 ms
23,272 KB
testcase_15 AC 23 ms
25,452 KB
testcase_16 AC 23 ms
23,800 KB
testcase_17 AC 23 ms
23,280 KB
testcase_18 AC 22 ms
25,572 KB
testcase_19 AC 23 ms
25,556 KB
testcase_20 AC 23 ms
23,784 KB
testcase_21 AC 23 ms
23,724 KB
testcase_22 AC 23 ms
25,448 KB
testcase_23 AC 22 ms
23,524 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System.Collections.Generic;
using System.Linq;
using System;

public class Hello
{
    static void Main()
    {
        var s = Console.ReadLine().Trim();
        getAns(s);
    }
    static bool check(string t)
    {
        var a = 0;
        var b = 0;
        var c = 0;
        for (int i = 0; i < 8; i++)
        {
            var ta = t[i] - '0';
            var tb = t[i] - 'a';
            if (ta >= 0 && ta <= 9) a++;
            else if (tb >= 0 && tb <= 25) b++;
            else c++;
        }
        return a > 0 && b > 0 && c > 0;
    }
    static void getAns(string s)
    {
        var a = "loas";
        var b = "10@$";
        var ans = 0;
        var q = new Queue<string>();
        q.Enqueue("");
        while (q.Count > 0)
        {
            var w = q.Dequeue();
            var wL = w.Length;
            if (wL == 8)
            {
                if (check(w)) ans++;
                continue;
            }
            q.Enqueue(w + s[wL]);
            for (int i = 0; i < 4; i++)
            {
                if (s[wL] == a[i]) { q.Enqueue(w + b[i]); break; }
            }
        }
        Console.WriteLine(ans);
    }
}
0