結果

問題 No.2201 p@$$w0rd
ユーザー achapiachapi
提出日時 2024-11-09 15:17:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 2,157 ms
コンパイル使用メモリ 206,820 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-09 15:17:52
合計ジャッジ時間 3,308 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	string S;
	cin >> S;
	set<string> st;
	for (int i = 0; i < (1 << 8); i++){
		int a = 0, b = 0;
		string T = S;
		for (int j = 0; j < 8; j++){
			if (((i >> j) & 1) == 1){
				if (S[j] == 'l'){
					T[j] = '1';
					a++;
				}
				if (S[j] == 'o'){
					T[j] = '0';
					a++;
				}
				if (S[j] == 'a'){
					T[j] = '@';
					b++;
				}
				if (S[j] == 's'){
					T[j] = '$';
					b++;
				}
			}
		}
		if (a > 0 and b > 0 and a + b != 8){
			st.insert(T);
		}
	}
	cout << st.size() << endl;
}
0