結果

問題 No.438 Cwwプログラミング入門
ユーザー しらっ亭しらっ亭
提出日時 2016-10-28 23:51:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,535 bytes
コンパイル時間 1,720 ms
コンパイル使用メモリ 170,904 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-03 17:55:48
合計ジャッジ時間 9,958 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 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,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 WA -
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 WA -
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 WA -
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,944 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 WA -
testcase_40 AC 2 ms
6,944 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 2 ms
6,944 KB
testcase_44 WA -
testcase_45 AC 2 ms
6,944 KB
testcase_46 AC 2 ms
6,944 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 2 ms
6,944 KB
testcase_51 AC 2 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,940 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 2 ms
6,940 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 AC 3 ms
6,940 KB
testcase_66 WA -
testcase_67 AC 2 ms
6,940 KB
testcase_68 AC 2 ms
6,944 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,944 KB
testcase_79 AC 2 ms
6,944 KB
testcase_80 AC 2 ms
6,940 KB
testcase_81 AC 2 ms
6,940 KB
testcase_82 AC 2 ms
6,940 KB
testcase_83 AC 2 ms
6,940 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,944 KB
testcase_88 RE -
testcase_89 AC 2 ms
6,944 KB
testcase_90 AC 2 ms
6,944 KB
testcase_91 RE -
testcase_92 RE -
testcase_93 AC 2 ms
6,944 KB
testcase_94 RE -
testcase_95 AC 2 ms
6,944 KB
testcase_96 AC 2 ms
6,940 KB
testcase_97 WA -
testcase_98 AC 2 ms
6,940 KB
testcase_99 AC 2 ms
6,940 KB
testcase_100 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define _p(...) (void)printf(__VA_ARGS__)
#define forr(x,arr) for(auto&& x:arr)
#define _overload3(_1,_2,_3,name,...) name
#define _rep2(i,n) _rep3(i,0,n)
#define _rep3(i,a,b) for(int i=int(a);i<int(b);++i)
#define rep(...) _overload3(__VA_ARGS__,_rep3,_rep2,)(__VA_ARGS__)
#define _rrep2(i,n) _rrep3(i,0,n)
#define _rrep3(i,a,b) for(int i=int(b)-1;i>=int(a);i--)
#define rrep(...) _overload3(__VA_ARGS__,_rrep3,_rrep2,)(__VA_ARGS__)
#define all(x) (x).begin(), (x).end()
#define bit(n) (1LL<<(n))
#define sz(x) ((int)(x).size())
#define fst first
#define snd second
using ll=long long;using pii=pair<int,int>;using vb=vector<bool>;
using vi=vector<int>;using vvi=vector<vi>;using vvvi=vector<vvi>;
using vl=vector<ll>;using vvl=vector<vl>;using vvvl=vector<vvl>;
using vd=vector<double>;using vvd=vector<vd>;using vvvd=vector<vvd>;
using vpii=vector<pii>;using vvpii=vector<vpii>;using vvvpii=vector<vvpii>;
template <typename T> T read() {T t; cin >> t; return t;}

void minu(char c, int n, string &ret) {
  rep(i, n) {
    ret += c;
    ret += 'W';
  }
}

void neg(char c, int n, string &ret) {
  rep(i, n+2) ret += c;
  rep(i, n) ret += 'C';
  ret += 'W';
}

void pos(char c, int n, string &ret) {
  rep(i, n) ret += c;
  rep(i, n-1) ret += 'C';
}

string solve() {
  int c = read<int>();
  int w = read<int>();
  ll Z = read<int>();

  if (Z == 0) return "ccW";

  rep(nnc, 0, 5010) rep(pn, 2) {
    int nc = nnc;
    if (pn) nc = -nc;
    ll rem = Z - nnc * c;
    if (rem % w == 0) {
      ll nw = rem / w;
      //_p("%d,%lld\n", nc, nw);
      if (nc == 0) {
        if (nw < 0) {
          nw = -nw;
          ll len = 2 * nw + 3;
          if (len > 10000) continue;
          string ret;
          neg('w', nw, ret);
          return ret;
        }
        else {
          ll len = 2 * nw -1;
          if (len > 10000) continue;
          string ret;
          pos('w', nw, ret);
          return ret;
        }
      }
      else if (nw == 0) {
        if (nc < 0) {
          nc = -nc;
          ll len = 2 * nc + 3;
          if (len > 10000) continue;
          string ret;
          neg('c', nc, ret);
          return ret;
        }
        else {
          ll len = 2 * nc -1;
          if (len > 10000) continue;
          string ret;
          pos('c', nc, ret);
          return ret;
        }
      }

      else if (nc > 0 && nw > 0) {
        string ret;
        ll len = 2 * nc - 1 + 2 * nw - 1 + 1;
        if (len > 10000) continue;
        pos('c', nc, ret);
        pos('w', nw, ret);
        ret += 'C';
        return ret;
      }
      else if (nc > 0 && nw < 0) {
        nw = -nw;
        ll len = 2 * nc - 1 + 2 * nw;
        if (len > 10000) continue;
        string ret;
        pos('c', nc, ret);
        minu('w', nw, ret);
        return ret;
      }
      else if (nc < 0 && nw > 0) {
        nc = -nc;
        string ret;
        ll len = 2 * nw - 1 + 2 * nc;
        if (len > 10000) continue;
        pos('w', nw, ret);
        minu('c', nc, ret);
        return ret;
      }
      else if (nc < 0 && nw < 0) {
        nc = -nc;
        nw = -nw;
        string ret;
        ll len = 2 * nc - 1 + 2 * nw;
        if (len > 10000) continue;
        neg('c', nc, ret);
        minu('w', nw, ret);
        return ret;
      }
    }
  }

  return "mourennaihasimasenn";
}

void Main() {
  string ret = solve();
  cout << ret << endl;
  //cout << sz(ret) << endl;
}
int main() { cin.tie(nullptr); ios::sync_with_stdio(false); Main(); return 0; }
0