結果
問題 | No.2419 MMA文字列2 |
ユーザー | 👑 Nafmo2 |
提出日時 | 2023-07-22 17:51:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 77 ms / 2,000 ms |
コード長 | 1,619 bytes |
コンパイル時間 | 9,195 ms |
コンパイル使用メモリ | 398,860 KB |
実行使用メモリ | 52,032 KB |
最終ジャッジ日時 | 2024-09-22 17:24:45 |
合計ジャッジ時間 | 10,346 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,816 KB |
testcase_02 | AC | 3 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 4 ms
6,944 KB |
testcase_09 | AC | 3 ms
6,944 KB |
testcase_10 | AC | 3 ms
6,944 KB |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 20 ms
14,080 KB |
testcase_13 | AC | 5 ms
6,944 KB |
testcase_14 | AC | 35 ms
24,064 KB |
testcase_15 | AC | 22 ms
16,128 KB |
testcase_16 | AC | 35 ms
25,088 KB |
testcase_17 | AC | 11 ms
9,856 KB |
testcase_18 | AC | 36 ms
26,240 KB |
testcase_19 | AC | 39 ms
26,880 KB |
testcase_20 | AC | 12 ms
10,752 KB |
testcase_21 | AC | 10 ms
8,576 KB |
testcase_22 | AC | 77 ms
51,944 KB |
testcase_23 | AC | 76 ms
51,808 KB |
testcase_24 | AC | 75 ms
52,032 KB |
testcase_25 | AC | 75 ms
51,896 KB |
testcase_26 | AC | 9 ms
9,216 KB |
testcase_27 | AC | 74 ms
51,920 KB |
testcase_28 | AC | 77 ms
51,932 KB |
testcase_29 | AC | 77 ms
51,948 KB |
testcase_30 | AC | 76 ms
51,916 KB |
testcase_31 | AC | 76 ms
51,820 KB |
ソースコード
// clang-format off #include <bits/stdc++.h> #include <iterator> #include <atcoder/all> #include <boost/multiprecision/cpp_int.hpp> #include <boost/multiprecision/integer.hpp> typedef long long int ll; #define FOR(i,a,b) for(ll i=(a);i<(b);i++) #define REP(i,n) for(ll i=0;i<signed(n);i++) #define EREP(i,n) for(ll i=1;i<=signed(n);i++) #define ALL(x) std::begin(x), std::end(x) using namespace std; using namespace atcoder; using boost::multiprecision::cpp_int; namespace mp = boost::multiprecision; //#define EVEL 1 #ifdef EVEL #define DEB(X) cout << #X <<":" <<X<<" " ; #define TF(f) f ? cout<<"true " : cout<<"false "; #define END cout<<"\n"; #else #define DEB(X) {} #define TF(f) {} #define END {} #endif const ll INF = 9e18; typedef std::pair<ll, ll> P; struct edge { ll to, cost; }; #define VMAX 100000 template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template <class T> T vgcd(T m, T n) {return std::gcd(m, n);} template <class T, class... Args> T vgcd(T a, Args... args) {return vgcd(a, vgcd(args...));} // clang-format on int dx[]={1,-1,0,0}; int dy[]={0,0,1,-1}; int main(void) { ll ans = 0; ll N; string S; cin>>S; N=S.size(); reverse(ALL(S)); vector<vector<ll>> A(N+1,vector<ll>(26)); REP(i,N){ A[i+1][S[i]-'A']++; } REP(i,N){ REP(j,26){ A[i+1][j]+=A[i][j]; } } REP(i,N-2){ REP(j,26){ if(j+'A'==S[i])continue; ans+=(A[N][j] - A[i][j]) * (A[N][j] - A[i][j]-1)/2; } } cout<<ans<<endl; }