結果

問題 No.438 Cwwプログラミング入門
ユーザー YazatenYazaten
提出日時 2016-10-29 00:30:04
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,984 bytes
コンパイル時間 1,391 ms
コンパイル使用メモリ 161,800 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-03 19:01:41
合計ジャッジ時間 7,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
#define rep(i,n) for(ll i=0;i<(ll)(n);i++)
#define all(a)  (a).begin(),(a).end()
#define pb push_back
#define INF (1LL<<59)

string bio = "mourennaihasimasenn";


int f(int x){
    if(x>0)return 2*x-1;
    else if(x==0)return 0;
    else return 2*abs(x)+3;
}

void g(char ch,int x){
    if(x>0){
        rep(i,x)cout<<ch;
        rep(i,x-1)cout<<'C';
    }else if(x==0)return ;
    else{
        rep(i,abs(x)+2)cout<<ch;
        rep(i,abs(x)+1)cout<<'W';
    }
}

int main(){
    int a,b,c;
    cin>>a>>b>>c;
    
    
    if(c==0){
        cout<<"ccW"<<endl;
        return 0;
    }
    else if(a==0&&b==0){
        cout<<bio<<endl;
        return 0;
    }
    else if(a==0){
        if(c%b==0){
            int num = c/b;
            if(2*num-1>10000){
                cout<<bio<<endl;
                return 0;
            }
            rep(i,num)cout<<'w';
            rep(i,num-1)cout<<'C';
            cout<<endl;
        }
        else cout<<bio<<endl;
        return 0;
    }
    else if(b==0){
        if(c%a==0){
            int num = c/a;
            if(2*num-1>10000){
                cout<<bio<<endl;
                return 0;
            }
            rep(i,num)cout<<'c';
            rep(i,num-1)cout<<'C';
            cout<<endl;
        }
        else cout<<bio<<endl;
        return 0;
    }
    
    if(c%__gcd(a,b)!=0){
        cout<<bio<<endl;
        return 0;
    }

    
    ll mini = INF;
    int yd,xd;
    int l = a/__gcd(a,b)*b;
    for(int x=-l;a*x<=c;x++){
        int df = c-a*x;
        if(abs(df)%b!=0)continue;
        int y = df/b;
        
        int sum =f(x)+f(y);
        if(x&&y)sum++;
        
        if(mini>sum){
            mini = sum;
            xd = x;
            yd = y;
        }
    }
    if(mini>10000)cout<<bio<<endl;
    else{
        g('c',xd);
        g('w',yd);
        if(xd&&yd)cout<<'C'<<endl;
        else cout<<endl;
    }
}
0