結果

問題 No.2201 p@$$w0rd
ユーザー ぷらぷら
提出日時 2023-02-03 21:23:26
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 752 bytes
コンパイル時間 2,032 ms
コンパイル使用メモリ 200,460 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-02 19:05:14
合計ジャッジ時間 2,809 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    string S;
    cin >> S;
    int ans = 0;
    for(int i = 0; i < (1 << S.size()); i++) {
        bool flag = true;
        int a = 0,b = 0,c = 0;
        for(int j = 0; j < S.size(); j++) {
            if(1 & (i >> j)) {
                if(S[j] == 'l' || S[j] == 'o') {
                    b++;
                }
                else if(S[j] == 'a' || S[j] == 's') {
                    c++;
                }
                else {
                    flag = false;
                }
            }
            else {
                a++;
            }
        }
        if(a && b && c && flag) ans++;
    }
    cout << ans << endl;
}
0