結果

問題 No.438 Cwwプログラミング入門
ユーザー kotatsugamekotatsugame
提出日時 2020-03-05 05:39:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,655 bytes
コンパイル時間 808 ms
コンパイル使用メモリ 67,008 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-22 02:01:51
合計ジャッジ時間 5,187 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 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 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 1 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 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 1 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 1 ms
5,376 KB
testcase_47 AC 1 ms
5,376 KB
testcase_48 WA -
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 WA -
testcase_54 AC 1 ms
5,376 KB
testcase_55 WA -
testcase_56 AC 1 ms
5,376 KB
testcase_57 WA -
testcase_58 AC 2 ms
5,376 KB
testcase_59 AC 2 ms
5,376 KB
testcase_60 AC 2 ms
5,376 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 WA -
testcase_64 AC 2 ms
5,376 KB
testcase_65 AC 2 ms
5,376 KB
testcase_66 AC 2 ms
5,376 KB
testcase_67 AC 1 ms
5,376 KB
testcase_68 AC 2 ms
5,376 KB
testcase_69 AC 2 ms
5,376 KB
testcase_70 WA -
testcase_71 AC 2 ms
5,376 KB
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 AC 2 ms
5,376 KB
testcase_76 AC 2 ms
5,376 KB
testcase_77 WA -
testcase_78 AC 1 ms
5,376 KB
testcase_79 AC 2 ms
5,376 KB
testcase_80 AC 1 ms
5,376 KB
testcase_81 AC 2 ms
5,376 KB
testcase_82 AC 2 ms
5,376 KB
testcase_83 AC 1 ms
5,376 KB
testcase_84 AC 2 ms
5,376 KB
testcase_85 AC 1 ms
5,376 KB
testcase_86 AC 2 ms
5,376 KB
testcase_87 AC 2 ms
5,376 KB
testcase_88 AC 1 ms
5,376 KB
testcase_89 AC 2 ms
5,376 KB
testcase_90 AC 2 ms
5,376 KB
testcase_91 AC 2 ms
5,376 KB
testcase_92 AC 1 ms
5,376 KB
testcase_93 AC 1 ms
5,376 KB
testcase_94 AC 1 ms
5,376 KB
testcase_95 WA -
testcase_96 AC 1 ms
5,376 KB
testcase_97 WA -
testcase_98 AC 2 ms
5,376 KB
testcase_99 AC 2 ms
5,376 KB
testcase_100 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:17:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   17 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
template<typename T>
T extgcd(T a,T b,T&x,T&y)
{
	if(b==0)
	{
		x=1;
		y=0;
		return a;
	}
	T q=a/b;
	T g=extgcd(b,a-q*b,y,x);
	y-=q*x;
	return g;
}
main()
{
	long x,y,z;cin>>x>>y>>z;
	if(z==0)
	{
		cout<<"ccW"<<endl;
		return 0;
	}
	if(x==0&&y==0)
	{
		cout<<"NO"<<endl;
		return 0;
	}
	long g,k,l;
	g=extgcd(x,y,k,l);
	if(z%g!=0)
	{
		cout<<"NO"<<endl;
		return 0;
	}
	z/=g;
	k*=z;
	l*=z;
	if(k>0&&l<0)
	{
		long kt=k/y;
		long lt=-l/x;
		long t=kt<lt?kt:lt;
		k-=y*t;
		l+=x*t;
	}
	if(k<0&&l>0)
	{
		long kt=-k/y;
		long lt=l/x;
		long t=kt<lt?kt:lt;
		k+=y*t;
		l-=x*t;
	}
	string ans="";
	if(k==0)
	{
		if(l+l-1>10000)
		{
			cout<<"NO"<<endl;
			return 0;
		}
		else
		{
			for(int i=0;i<l;i++)
			{
				ans+='w';
				if(i)ans+='C';
			}
		}
	}
	else if(l==0)
	{
		if(k+k-1>10000)
		{
			cout<<"NO"<<endl;
			return 0;
		}
		else
		{
			for(int i=0;i<k;i++)
			{
				ans+='c';
				if(i)ans+='C';
			}
		}
	}
	else if(k>0)
	{
		if(k+k-1+(l<0?-l:l)*2>10000)
		{
			cout<<"NO"<<endl;
			return 0;
		}
		else if(l>0)
		{
			for(int i=0;i<k;i++)
			{
				ans+='c';
				if(i)ans+='C';
			}
			for(int i=0;i<l;i++)
			{
				ans+='w';
				ans+='C';
			}
		}
		else
		{
			for(int i=0;i<-l;i++)
			{
				ans+='w';
			}
			for(int i=0;i<k;i++)
			{
				ans+='c';
				if(i)ans+='C';
			}
			for(int i=0;i<-l;i++)
			{
				ans+='W';
			}
		}
	}
	else
	{
		if(l+l-1-k*2>10000)
		{
			cout<<"NO"<<endl;
			return 0;
		}
		else
		{
			for(int i=0;i<-k;i++)
			{
				ans+='c';
			}
			for(int i=0;i<l;i++)
			{
				ans+='w';
				if(i)ans+='C';
			}
			for(int i=0;i<-k;i++)
			{
				ans+='W';
			}
		}
	}
	cout<<ans<<endl;
}
0