結果
問題 | No.52 よくある文字列の問題 |
ユーザー | Naco |
提出日時 | 2019-10-16 00:00:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 526 bytes |
コンパイル時間 | 1,598 ms |
コンパイル使用メモリ | 176,064 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-10 01:03:33 |
合計ジャッジ時間 | 2,216 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; int ans=0; string s; map<string,int> ma; void solve(string now,int ind){ int N=s.size(); if(ind==N/2){ ma[now]++; return; } string i=now+s[N-1-ind]; string j=s[N-1-ind]+now; string k=now+s[ind]; string l=s[ind]+now; //cout << i << " " << j << " " << k << " " << l << endl; solve(i,ind+1); solve(j,ind+1); solve(k,ind+1); solve(l,ind+1); } int main(){ cin >> s; solve("",0); cout << ma.size() << endl; }