結果

問題 No.438 Cwwプログラミング入門
ユーザー 🐬hec🐬hec
提出日時 2016-10-28 23:37:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,254 bytes
コンパイル時間 1,895 ms
コンパイル使用メモリ 172,636 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-03 17:20:48
合計ジャッジ時間 13,857 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

#define _overload(_1,_2,_3,name,...) name
#define _rep(i,n) _range(i,0,n)
#define _range(i,a,b) for(int i=int(a);i<int(b);++i)
#define rep(...) _overload(__VA_ARGS__,_range,_rep,)(__VA_ARGS__)

#define _rrep(i,n) _rrange(i,n,0)
#define _rrange(i,a,b) for(int i=int(a)-1;i>=int(b);--i)
#define rrep(...) _overload(__VA_ARGS__,_rrange,_rrep,)(__VA_ARGS__)

#define _all(arg) begin(arg),end(arg)
#define uniq(arg) sort(_all(arg)),(arg).erase(unique(_all(arg)),end(arg))
#define getidx(ary,key) lower_bound(_all(ary),key)-begin(ary)
#define clr(a,b) memset((a),(b),sizeof(a))
#define bit(n) (1LL<<(n))
#define popcount(n) (__builtin_popcountll(n))

using namespace std;

template<class T>bool chmax(T &a, const T &b) { return (a<b)?(a=b,1):0;}
template<class T>bool chmin(T &a, const T &b) { return (b<a)?(a=b,1):0;}

using ll=long long;
using R=long double;
const R EPS=1e-9; // [-1000,1000]->EPS=1e-8 [-10000,10000]->EPS=1e-7
inline int sgn(const R& r){return(r > EPS)-(r < -EPS);}
inline R sq(R x){return sqrt(max<R>(x,0.0));}

const int dx[8]={1,0,-1,0,1,-1,-1,1};
const int dy[8]={0,1,0,-1,1,1,-1,-1};

// Problem Specific Parameter:

// Description: Chinese Remainder Theorm
// TimeComplexity: $\mathcal{O}(\log|m|)$ 
// Verifyed: CF 724 C

inline tuple<ll,ll,ll> extgcd(ll a,ll b){
	ll x=1LL,y=0LL,g=a;
	if(b!=0){
		tie(g,y,x)=extgcd(b,a%b);
		y-=a/b*x;
	}
	return make_tuple(g,x,y);
}

const int limit=10000;

int main(void){
	ll x,y,z;
	cin >> x >> y >> z;
	ll a,b,g;
	tie(g,a,b)=extgcd(x,y);

	string ans="mourennaihasimasenn";

	if(z%g==0){
		a*=z/g,b*=z/g;
		while(abs(a)+abs(b)>abs(a-y)+abs(b+x)) a-=y,b+=x;
		while(abs(a)+abs(b)>abs(a+y)+abs(b-x)) a+=y,b-=x;

		if(abs(a)+abs(b)>limit){
			ans="mourennaihasimasenn";
		}else if(a > 0 and b > 0){
			ans+=string(abs(a),'c');
			ans+=string(abs(b),'w');
			ans+=string(abs(a)+abs(b)-1,'C');
		}else if(a > 0 and b < 0){
			ans+=string(abs(b),'w');
			ans+=string(abs(a),'c');
			ans+=string(abs(a)-1,'C');
			ans+=string(abs(b),'W');		
		}else if(a < 0 and b > 0){
			ans+=string(abs(a),'c');
			ans+=string(abs(b),'w');
			ans+=string(abs(b)-1,'C');
			ans+=string(abs(a),'W');
		}
	}

	if(ans.size()>limit) ans="mourennaihasimasenn";
	cout << ans << endl;
	return 0;
}
0