結果

問題 No.52 よくある文字列の問題
ユーザー hiyokko2hiyokko2
提出日時 2015-01-11 22:13:01
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 748 bytes
コンパイル時間 778 ms
コンパイル使用メモリ 91,520 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-22 03:58:25
合計ジャッジ時間 1,360 ms
ジャッジサーバーID
(参考情報)
judge12 / judge10
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 1 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 1 ms
4,348 KB
testcase_06 AC 1 ms
4,348 KB
testcase_07 AC 1 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 1 ms
4,348 KB
testcase_10 AC 1 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <string>
#include <sstream>
#include <algorithm>
#include <math.h>
#include <map>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#define PI 3.14159265359
#define INF 99999999;
#define rep(i, n) for(int i=0; i<n; i++)
#define REP(n) rep(i, n)
#define EPS 1e-10
typedef long long ll;
using namespace std;



/*
class Target
{
public:
	vector <string> draw(int n)
	{

	}
};
*/



set<string> result;

void dfs(string s, string t)
{
	if (s.size() == 1)
	{
		result.insert(t + s[0]);
	} else {
		dfs(s.substr(1), t + s[0]);
		dfs(s.substr(0, s.size() - 1), t + s[s.size() - 1]);
	}
}


int main()
{
	string s;
	
	cin >> s;
	dfs(s, "");
	
	cout << result.size() << endl;
	
	return 0;
}
0