結果

問題 No.2198 Concon Substrings (COuNt-CONstruct Version)
ユーザー FplusFplusFFplusFplusF
提出日時 2023-01-20 23:16:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,277 bytes
コンパイル時間 1,966 ms
コンパイル使用メモリ 199,572 KB
実行使用メモリ 5,320 KB
最終ジャッジ日時 2023-09-05 15:46:51
合計ジャッジ時間 63,511 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,384 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 2 ms
4,384 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,384 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,384 KB
testcase_08 AC 4 ms
4,384 KB
testcase_09 AC 4 ms
4,384 KB
testcase_10 AC 4 ms
4,380 KB
testcase_11 AC 4 ms
4,380 KB
testcase_12 AC 4 ms
4,384 KB
testcase_13 AC 7 ms
4,384 KB
testcase_14 AC 34 ms
4,380 KB
testcase_15 AC 302 ms
4,380 KB
testcase_16 AC 2 ms
4,384 KB
testcase_17 AC 2 ms
4,384 KB
testcase_18 AC 2 ms
4,384 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 4 ms
4,384 KB
testcase_21 AC 3 ms
4,380 KB
testcase_22 AC 4 ms
4,384 KB
testcase_23 AC 4 ms
4,380 KB
testcase_24 AC 5 ms
4,380 KB
testcase_25 AC 7 ms
4,384 KB
testcase_26 RE -
testcase_27 AC 258 ms
4,380 KB
testcase_28 AC 2 ms
4,380 KB
testcase_29 AC 2 ms
4,384 KB
testcase_30 AC 2 ms
4,384 KB
testcase_31 AC 1 ms
4,384 KB
testcase_32 AC 1 ms
4,384 KB
testcase_33 AC 1 ms
4,380 KB
testcase_34 AC 1 ms
4,384 KB
testcase_35 AC 2 ms
4,380 KB
testcase_36 AC 1 ms
4,380 KB
testcase_37 AC 1 ms
4,380 KB
testcase_38 AC 2 ms
4,384 KB
testcase_39 AC 2 ms
4,380 KB
testcase_40 AC 3 ms
4,380 KB
testcase_41 AC 3 ms
4,380 KB
testcase_42 AC 3 ms
4,380 KB
testcase_43 AC 3 ms
4,380 KB
testcase_44 AC 3 ms
4,380 KB
testcase_45 AC 5 ms
4,380 KB
testcase_46 AC 4 ms
4,380 KB
testcase_47 AC 4 ms
4,380 KB
testcase_48 AC 4 ms
4,384 KB
testcase_49 AC 3 ms
4,384 KB
testcase_50 AC 4 ms
4,380 KB
testcase_51 AC 4 ms
4,384 KB
testcase_52 AC 4 ms
4,380 KB
testcase_53 AC 4 ms
4,380 KB
testcase_54 AC 4 ms
4,384 KB
testcase_55 AC 33 ms
4,384 KB
testcase_56 AC 5 ms
4,380 KB
testcase_57 RE -
testcase_58 AC 6 ms
4,384 KB
testcase_59 AC 23 ms
4,384 KB
testcase_60 RE -
testcase_61 AC 20 ms
4,380 KB
testcase_62 AC 25 ms
4,380 KB
testcase_63 RE -
testcase_64 RE -
testcase_65 AC 1,025 ms
4,384 KB
testcase_66 AC 86 ms
4,384 KB
testcase_67 AC 190 ms
4,380 KB
testcase_68 AC 60 ms
4,380 KB
testcase_69 RE -
testcase_70 RE -
testcase_71 AC 934 ms
4,384 KB
testcase_72 AC 481 ms
4,380 KB
testcase_73 RE -
testcase_74 RE -
testcase_75 AC 907 ms
4,384 KB
testcase_76 AC 80 ms
4,384 KB
testcase_77 AC 67 ms
4,384 KB
testcase_78 RE -
testcase_79 RE -
testcase_80 AC 50 ms
4,384 KB
testcase_81 RE -
testcase_82 RE -
testcase_83 RE -
testcase_84 AC 45 ms
4,380 KB
testcase_85 AC 9 ms
4,384 KB
testcase_86 RE -
testcase_87 RE -
testcase_88 AC 4 ms
4,384 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;
        return 0;
    }
    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;
            }else if(i+j+m/(i*j)+1<=6e4&&m%(i*j)==i){
                rep(c,i) cout << "c";
                rep(o,j) cout << "o";
                rep(n,m/(i*j)-1) cout << "n";
                cout << "on" << endl;
                return 0;
            }
        }
    }
    assert(0);
}
0