結果

問題 No.438 Cwwプログラミング入門
ユーザー HeyHey0111HeyHey0111
提出日時 2016-10-28 23:40:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,500 bytes
コンパイル時間 867 ms
コンパイル使用メモリ 92,956 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 17:27:29
合計ジャッジ時間 8,088 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define _USE_MATH_DEFINES
#include<iostream>
#include<sstream>
#include<vector>
#include<string>
#include<algorithm>
#include<map>
#include<unordered_map>
#include<math.h>
#include<iterator>

using namespace std;
long long dp[1<<12+1];

template<typename T>
T gcd( T m, T n )
{
  // 引数に0がある場合は0を返す
  if ( ( 0 == m ) || ( 0 == n ) )
    return 0;

  // ユークリッドの方法
  while( m != n )
  {
    if ( m > n ) m = m - n;
    else         n = n - m;
  }
  return m;
}

template<typename T>
T* hoge( T m, T n )
{
  T* ans = new T[3];
  T d[2]={m,n};
  T x[2]={1,0};
  T y[2]={0,1};
  while(d[1]!=0){
    T q = d[0]/d[1];
    T tmp =d[0];
    d[0]=d[1];
    d[1]=tmp%d[1];
    tmp = x[0];
    x[0]=x[1];
    x[1]=tmp-q*x[1];
    tmp = y[0];
    y[0]=y[1];
    y[1]=tmp-q*y[1];

    ans[0]=x[0];
    ans[1]=y[0];
    ans[2]=d[0];
  }
  return ans;
}

template<typename T>
T value(T a,T b,T c,T t,T u,T v){
  return abs(b*t+u*c) + abs(-a*t+v*c);
}
int main(){
  string fuck="mourennaihasimasenn";
  long long x,y,z;
  cin >> x >> y >> z;
  long long xygcd=gcd(x,y);
  if( z % xygcd!= 0){
    cout <<fuck<<endl;
    return 0;
  }
  x/=xygcd;
  y/=xygcd;
  z/=xygcd;
  long long *ho = hoge(x,y);
  long long a,b,c,u,v;
  a = x/ho[2];
  b = y/ho[2];
  c = z/ho[2];
  u = ho[0];
  v = ho[1];

  long long lmin=-10000000000;
  long long lmax= 10000000000;
  for (int i = 0; i < 100000; i++) {
    long long center1 = (lmax-lmin)/3+lmin;
    long long center2 = (lmax-lmin)/3*2+lmin;
    if(value(a,b,c,center1,u,v)>value(a,b,c,center2,u,v)){
      lmin = center1;
    }else{
      lmax = center2;
    }
  }

  int prefix = (lmin+lmax)/2;
  int buf = 100;
  for (int i = -buf; i < buf; i++) {
    long long t =prefix+i;
    if(value(a,b,c,t,u,v)>5010)continue;
    string output;
    for (int j = 0; j < abs(b*t+u*c); j++) {
      output+='c';
    }
    if(b*t+u*c<0){
      output+='c';
      output+='c';
      for (int j = 0; j < abs(b*t+u*c)+1; j++) {
        output+='W';
      }
    }else{
      for (int j = 0; j < abs(b*t+u*c)-1; j++) {
        output+='C';
      }
    }

    for (int j = 0; j < abs(-a*t+v*c); j++) {
      output+='w';
    }

    if(-a*t+v*c<0){
      for (int j = 0; j < abs(-a*t+v*c)-1; j++) {
        output+='W';
      }
    }else{
      for (int j = 0; j < abs(-a*t+v*c)-1; j++) {
        output+='C';
      }
    }
    output+='C';
    if(output.length()<10000){
      cout << output<<endl;
      return 0;
    }
  }
  cout << fuck<<endl;
}
0