結果

問題 No.438 Cwwプログラミング入門
ユーザー kotatsugamekotatsugame
提出日時 2016-10-28 23:59:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
OLE  
実行時間 -
コード長 1,377 bytes
コンパイル時間 837 ms
コンパイル使用メモリ 72,988 KB
実行使用メモリ 142,204 KB
最終ジャッジ日時 2024-11-24 21:34:27
合計ジャッジ時間 160,618 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,144 KB
testcase_01 AC 2 ms
13,636 KB
testcase_02 AC 2 ms
10,148 KB
testcase_03 AC 1 ms
13,636 KB
testcase_04 OLE -
testcase_05 OLE -
testcase_06 AC 4 ms
8,448 KB
testcase_07 AC 2 ms
12,064 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
9,892 KB
testcase_13 AC 2 ms
13,512 KB
testcase_14 WA -
testcase_15 AC 2 ms
13,516 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
13,936 KB
testcase_19 AC 2 ms
13,508 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 2 ms
17,896 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
13,508 KB
testcase_28 AC 2 ms
10,148 KB
testcase_29 AC 2 ms
13,508 KB
testcase_30 AC 2 ms
13,640 KB
testcase_31 AC 2 ms
13,508 KB
testcase_32 AC 2 ms
10,276 KB
testcase_33 AC 2 ms
13,512 KB
testcase_34 WA -
testcase_35 AC 2 ms
13,640 KB
testcase_36 AC 2 ms
20,244 KB
testcase_37 AC 2 ms
13,516 KB
testcase_38 AC 2 ms
13,512 KB
testcase_39 AC 2 ms
142,204 KB
testcase_40 AC 2 ms
28,024 KB
testcase_41 AC 2 ms
13,508 KB
testcase_42 AC 2 ms
13,644 KB
testcase_43 AC 2 ms
13,512 KB
testcase_44 AC 2 ms
13,508 KB
testcase_45 AC 2 ms
13,640 KB
testcase_46 AC 2 ms
62,236 KB
testcase_47 AC 2 ms
6,688 KB
testcase_48 OLE -
testcase_49 OLE -
testcase_50 AC 2 ms
6,692 KB
testcase_51 OLE -
testcase_52 OLE -
testcase_53 OLE -
testcase_54 AC 2 ms
6,692 KB
testcase_55 OLE -
testcase_56 OLE -
testcase_57 OLE -
testcase_58 AC 3 ms
6,688 KB
testcase_59 OLE -
testcase_60 OLE -
testcase_61 WA -
testcase_62 AC 2 ms
6,688 KB
testcase_63 OLE -
testcase_64 OLE -
testcase_65 AC 4 ms
6,688 KB
testcase_66 OLE -
testcase_67 AC 2 ms
6,688 KB
testcase_68 WA -
testcase_69 OLE -
testcase_70 OLE -
testcase_71 OLE -
testcase_72 OLE -
testcase_73 OLE -
testcase_74 OLE -
testcase_75 OLE -
testcase_76 WA -
testcase_77 OLE -
testcase_78 OLE -
testcase_79 AC 2 ms
6,688 KB
testcase_80 OLE -
testcase_81 AC 16 ms
6,688 KB
testcase_82 TLE -
testcase_83 OLE -
testcase_84 AC 17 ms
6,688 KB
testcase_85 AC 2 ms
6,692 KB
testcase_86 TLE -
testcase_87 OLE -
testcase_88 AC 3 ms
6,692 KB
testcase_89 AC 3 ms
6,688 KB
testcase_90 WA -
testcase_91 AC 2 ms
6,688 KB
testcase_92 WA -
testcase_93 WA -
testcase_94 AC 2 ms
6,688 KB
testcase_95 OLE -
testcase_96 OLE -
testcase_97 OLE -
testcase_98 AC 2 ms
6,696 KB
testcase_99 OLE -
testcase_100 OLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<algorithm>
#include<vector>
#include<string>
#include<sstream>
using namespace std;

int gcd(int a,int b)
{
	if(b==0)return a;
	else return gcd(b,a%b);
}

int main()
{
	int x,y,z;
	cin>>x>>y>>z;
	if(z==0)
	{
		cout<<endl;
		return 0;
	}
	else if(x==0&&y==0)
	{
		cout<<"mourennaihasimasenn"<<endl;
		return 0;
	}
	else if(x==0)
	{
		if(z%y==0)
		{
			for(int i=0;i<z/y;i++)cout<<"w";
			for(int i=0;i<z/y-1;i++)cout<<"C";
			cout<<endl;
			return 0;
		}
		else
		{
			cout<<"mourennaihasimasenn"<<endl;
			return 0;
		}
	}
	else if(y==0)
	{
		if(z%x==0)
		{
			for(int i=0;i<z/x;i++)cout<<"c";
			for(int i=0;i<z/x-1;i++)cout<<"C";
			cout<<endl;
			return 0;
		}
		else
		{
			cout<<"mourennaihasimasenn"<<endl;
			return 0;
		}
	}
	int gcdxy=gcd(max(x,y),x+y-max(x,y));
	if(gcdxy!=1)
	{
		int gcdgcdz=gcd(max(gcdxy,z),gcdxy+z-max(gcdxy,z));
		if(gcdgcdz<gcdxy)
		{
			cout<<"mourennaihasimasenn"<<endl;
			return 0;
		}
		x/=gcdgcdz;
		y/=gcdgcdz;
		z/=gcdgcdz;
	}
	int n,m;
	stringstream s;
	for(m=1;;m++)
	{
		if((1-y*m)%x==0)
		{
			n=(1-y*m)/x;
			break;
		}
	}
	n=(-1)*n;
	for(int i=0;i<n;i++)s<<"c";
	for(int i=n;i<n+m;i++)s<<"w";
	for(int i=n+m;i<n+m+m-1;i++)s<<"C";
	for(int i=n+m+m-1;i<n+m+m+n-1;i++)s<<"W";
	for(int i=0;i<z;i++)cout<<s.str();
	for(int i=0;i<z-1;i++)cout<<"C";
	cout<<endl;
	return 0;
}
0