結果
問題 | No.852 連続部分文字列 |
ユーザー | pione |
提出日時 | 2019-07-26 22:20:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,592 bytes |
コンパイル時間 | 1,394 ms |
コンパイル使用メモリ | 166,772 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-07-02 07:42:09 |
合計ジャッジ時間 | 6,482 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,888 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 8 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,944 KB |
testcase_07 | AC | 4 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 3 ms
6,944 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i, n) for (int i = (int)(0); i < (int)(n); ++i) #define REPS(i, n) for (int i = (int)(1); i <= (int)(n); ++i) #define RREP(i, n) for (int i = ((int)(n)-1); i >= 0; i--) #define RREPS(i, n) for (int i = ((int)(n)); i > 0; i--) #define IREP(i, m, n) for (int i = (int)(m); i < (int)(n); ++i) #define IREPS(i, m, n) for (int i = (int)(m); i <= (int)(n); ++i) #define FOR(e, c) for (auto &e : c) #define SORT(v, n) sort(v, v + n); #define VSORT(v) sort(v.begin(), v.end()); #define RVISORT(v) sort(v.begin(), v.end(), greater<int>()); #define ALL(v) v.begin(), v.end() #define MP(n, m) make_pair(n, m); using VI = vector<int>; using VVI = vector<VI>; using PII = pair<int, int>; using ll = long long; using ul = unsigned long; typedef long long ll; template<class T, class C> void chmax(T& a, C b){ a>b?:a=b; } template<class T, class C> void chmin(T& a, C b){ a<b?:a=b; } const int mod=1e9+7; void printv(VI& v){ REP(i,v.size()) cout << v[i] << " "; cout << endl; } int vtotal(VI& v){ int total=0; REP(i,v.size()) total+=v[i]; return total; } int main() { cin.tie( 0 ); ios::sync_with_stdio( false ); // string n; // getline(cin,n); string s; cin>>s; int n=s.size(); int sum=0,count=0; REP(i,n){ REP(j,n-i){ map<char,int> m; REP(k,i+1){ m.insert(make_pair(s[j+k],0)); } // cout<<m.size()<<endl; sum+=m.size(); count++; } } // cout<<sum<<" "<<count<<endl; double ans=(double)sum/count; cout<<std::setprecision(10)<<ans<<endl; return 0; }