結果
問題 | No.2234 palindromer |
ユーザー | irohasu19_ |
提出日時 | 2023-03-11 20:38:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,873 bytes |
コンパイル時間 | 1,956 ms |
コンパイル使用メモリ | 203,700 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-18 06:46:02 |
合計ジャッジ時間 | 2,590 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
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 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | WA | - |
ソースコード
#include <bits/stdc++.h> #define repr(i,a,b) for(int i=a;i<b;i++) #define rep(i,n) for(int i=0;i<n;i++) #define reprrev(i,a,b) for(int i=b-1;i>=a;i--) // [a, b) #define reprev(i,n) reprrev(i,0,n) #define _GLIBCXX_DEBUG #define int long long using ll = long long; using ull = unsigned long long; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } const ll mod = 1e9+7; void chmod(ll &M){ if(M >= mod) M %= mod; else if(M < 0){ M += (abs(M)/mod + 1)*mod; M %= mod; } } int getl(int i, int N) { return i==0? N-1:i-1; }; int getr(int i, int N) { return i==N-1? 0:i+1; }; long long GCD(long long a, long long b) { if (b == 0) return a; else return GCD(b, a % b); } using namespace std; using Graph = vector<vector<int>>; signed main() { string A; cin >> A; int n = A.length(); int ind_pa = n-2; int count = 1; rep(i, n) { int tmp_1 = 0; int a_1 = i-1, b_1 = i; while(a_1 >= 0 && b_1 <= n-1) { if(A[a_1]==A[b_1]) { tmp_1++; a_1--; b_1++; } else break; } int tmp_2 = 0; int a_2 = i-1, b_2 = i+1; while(a_2 >= 0 && b_2 <= n-1) { if(A[a_2]==A[b_2]) { tmp_2++; a_2--; b_2++; } else break; } if(tmp_1 > count && b_1 == n) { count = tmp_1; ind_pa = a_1; } if(tmp_2 > count && b_2 == n) { count = tmp_2; ind_pa = a_2; } } /* if(count == n/2) { cout << A << endl; return 0; } */ string ans = ""; cerr << ind_pa << endl; string A_ = A.substr(0, ind_pa+1); string B_ = A.substr(ind_pa+1, count); ans += A_; ans += B_; reverse(A_.begin(), A_.end()); ans += A_; cout << ans << endl; }