# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1098816 | Alihan_8 | 세 명의 친구들 (BOI14_friends) | C++17 | 116 ms | 42384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define int long long
const int Mod = 998244353, P = 43;
signed main(){
int n; cin >> n;
string s; cin >> s;
if ( n % 2 == 0 ){
cout << "NOT POSSIBLE\n";
return 0;
}
vector <int> pw(1, 1);
while ( (int)pw.size() <= n ){
pw.pb(pw.back() * 1LL * P % Mod);
}
vector <int> p(n + 1);
for ( int i = 0; i < n; i++ ){
p[i + 1] = (p[i] * 1LL * P + s[i] - 'A' + 1) % Mod;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |