結果

問題 No.438 Cwwプログラミング入門
ユーザー kotatsugamekotatsugame
提出日時 2016-10-28 23:44:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
OLE  
実行時間 -
コード長 839 bytes
コンパイル時間 1,010 ms
コンパイル使用メモリ 72,764 KB
実行使用メモリ 789,596 KB
最終ジャッジ日時 2024-11-24 20:56:50
合計ジャッジ時間 190,422 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,016 KB
testcase_01 AC 2 ms
8,448 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
8,320 KB
testcase_04 OLE -
testcase_05 MLE -
testcase_06 AC 137 ms
9,560 KB
testcase_07 AC 5 ms
9,304 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 3 ms
9,216 KB
testcase_13 AC 2 ms
9,308 KB
testcase_14 WA -
testcase_15 AC 3 ms
9,560 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
8,704 KB
testcase_19 AC 3 ms
10,624 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 4 ms
8,448 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
10,496 KB
testcase_28 RE -
testcase_29 AC 3 ms
10,496 KB
testcase_30 AC 3 ms
8,320 KB
testcase_31 AC 2 ms
10,496 KB
testcase_32 AC 2 ms
10,148 KB
testcase_33 AC 4 ms
10,496 KB
testcase_34 WA -
testcase_35 AC 4 ms
13,640 KB
testcase_36 AC 2 ms
10,496 KB
testcase_37 AC 2 ms
13,640 KB
testcase_38 AC 2 ms
10,496 KB
testcase_39 AC 2 ms
39,112 KB
testcase_40 AC 3 ms
10,496 KB
testcase_41 AC 3 ms
13,636 KB
testcase_42 AC 3 ms
10,496 KB
testcase_43 AC 3 ms
16,332 KB
testcase_44 AC 2 ms
10,496 KB
testcase_45 AC 2 ms
13,636 KB
testcase_46 AC 2 ms
10,496 KB
testcase_47 AC 3 ms
13,640 KB
testcase_48 OLE -
testcase_49 OLE -
testcase_50 AC 3 ms
10,496 KB
testcase_51 OLE -
testcase_52 OLE -
testcase_53 OLE -
testcase_54 AC 3 ms
6,816 KB
testcase_55 OLE -
testcase_56 OLE -
testcase_57 OLE -
testcase_58 AC 87 ms
6,692 KB
testcase_59 OLE -
testcase_60 OLE -
testcase_61 WA -
testcase_62 AC 3 ms
5,120 KB
testcase_63 OLE -
testcase_64 OLE -
testcase_65 AC 26 ms
5,248 KB
testcase_66 OLE -
testcase_67 AC 5 ms
5,248 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 WA -
testcase_78 OLE -
testcase_79 AC 6 ms
5,248 KB
testcase_80 OLE -
testcase_81 AC 5 ms
5,248 KB
testcase_82 TLE -
testcase_83 OLE -
testcase_84 AC 5 ms
5,248 KB
testcase_85 AC 2 ms
5,248 KB
testcase_86 TLE -
testcase_87 OLE -
testcase_88 WA -
testcase_89 RE -
testcase_90 RE -
testcase_91 WA -
testcase_92 WA -
testcase_93 RE -
testcase_94 RE -
testcase_95 OLE -
testcase_96 OLE -
testcase_97 OLE -
testcase_98 AC 3 ms
6,688 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;
	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