結果

問題 No.2198 Concon Substrings (COuNt-CONstruct Version)
ユーザー FplusFplusFFplusFplusF
提出日時 2023-01-20 23:09:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,005 bytes
コンパイル時間 2,133 ms
コンパイル使用メモリ 198,316 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-05 15:37:57
合計ジャッジ時間 78,829 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 4 ms
4,376 KB
testcase_09 AC 4 ms
4,380 KB
testcase_10 AC 4 ms
4,376 KB
testcase_11 AC 4 ms
4,380 KB
testcase_12 AC 5 ms
4,376 KB
testcase_13 AC 7 ms
4,376 KB
testcase_14 AC 33 ms
4,380 KB
testcase_15 AC 284 ms
4,376 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 3 ms
4,376 KB
testcase_21 AC 4 ms
4,380 KB
testcase_22 AC 3 ms
4,380 KB
testcase_23 AC 3 ms
4,376 KB
testcase_24 RE -
testcase_25 AC 7 ms
4,376 KB
testcase_26 RE -
testcase_27 AC 245 ms
4,380 KB
testcase_28 AC 2 ms
4,376 KB
testcase_29 AC 2 ms
4,380 KB
testcase_30 AC 2 ms
4,376 KB
testcase_31 AC 2 ms
4,380 KB
testcase_32 AC 2 ms
4,376 KB
testcase_33 AC 1 ms
4,380 KB
testcase_34 AC 1 ms
4,376 KB
testcase_35 AC 2 ms
4,376 KB
testcase_36 AC 2 ms
4,384 KB
testcase_37 AC 2 ms
4,376 KB
testcase_38 AC 2 ms
4,380 KB
testcase_39 AC 2 ms
4,376 KB
testcase_40 AC 2 ms
4,380 KB
testcase_41 AC 4 ms
4,376 KB
testcase_42 AC 2 ms
4,376 KB
testcase_43 RE -
testcase_44 AC 3 ms
4,380 KB
testcase_45 RE -
testcase_46 AC 4 ms
4,376 KB
testcase_47 AC 3 ms
4,376 KB
testcase_48 AC 4 ms
4,380 KB
testcase_49 RE -
testcase_50 AC 4 ms
4,380 KB
testcase_51 AC 4 ms
4,380 KB
testcase_52 AC 2 ms
4,376 KB
testcase_53 RE -
testcase_54 AC 4 ms
4,380 KB
testcase_55 AC 28 ms
4,376 KB
testcase_56 AC 4 ms
4,376 KB
testcase_57 RE -
testcase_58 RE -
testcase_59 RE -
testcase_60 RE -
testcase_61 RE -
testcase_62 AC 23 ms
4,380 KB
testcase_63 RE -
testcase_64 RE -
testcase_65 RE -
testcase_66 RE -
testcase_67 RE -
testcase_68 RE -
testcase_69 RE -
testcase_70 RE -
testcase_71 RE -
testcase_72 RE -
testcase_73 RE -
testcase_74 RE -
testcase_75 RE -
testcase_76 RE -
testcase_77 RE -
testcase_78 RE -
testcase_79 RE -
testcase_80 AC 47 ms
4,376 KB
testcase_81 RE -
testcase_82 RE -
testcase_83 RE -
testcase_84 AC 46 ms
4,376 KB
testcase_85 AC 9 ms
4,376 KB
testcase_86 RE -
testcase_87 RE -
testcase_88 AC 4 ms
4,376 KB
testcase_89 RE -
testcase_90 RE -
testcase_91 RE -
testcase_92 RE -
testcase_93 RE -
testcase_94 RE -
testcase_95 RE -
testcase_96 RE -
testcase_97 RE -
testcase_98 RE -
testcase_99 RE -
testcase_100 RE -
testcase_101 RE -
testcase_102 RE -
testcase_103 RE -
testcase_104 RE -
testcase_105 RE -
testcase_106 RE -
testcase_107 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int i=0;i<(int)(n);i++)
#define all(v) v.begin(),v.end()
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
const ll INF=(1ll<<60);
template<class T> void chmin(T &a,T b){
    if(a>b){
        a=b;
    }
}
template<class T> void chmax(T &a,T b){
    if(a<b){
        a=b;
    }
}
ll modpow(ll a,ll b,ll mod){
    if(b==0) return 1;
    ll p=a,ret=1;
    for(ll i=0;i<=62;i++){
        if(b&(1ll<<i)){
            ret*=p;
            ret%=mod;
        }
        p=(p%mod)*(p%mod);
        p%=mod;
    }
    return ret;
}
int main(){
    ll m;
    cin >> m;
    if(m==0) cout << "a" << endl;
    for(ll i=1;i<=1e4;i++){
        for(ll j=1;j<=1e4;j++){
            if(i+j+m/(i*j)<=6e4&&+m%(i*j)==0){
                rep(c,i) cout << "c";
                rep(o,j) cout << "o";
                rep(n,m/(i*j)) cout << "n";
                cout << endl;
                return 0;
            }
        }
    }
    assert(0);
}
0