結果

問題 No.438 Cwwプログラミング入門
ユーザー hiyokko2hiyokko2
提出日時 2016-10-28 23:57:00
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,419 bytes
コンパイル時間 1,299 ms
コンパイル使用メモリ 160,816 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-03 18:03:41
合計ジャッジ時間 6,863 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
//#define int long long
using namespace std;
typedef long long ll;

int x, y, z;

int extgcd(int a, int b, int& x, int& y) {
	int d = a;
	if (b != 0) {
		d = extgcd(b, a % b, y, x);
		y -= (a / b) * x;
	} else {
		x = 1; y = 0;
	}
	return d;
}

signed main()
{
	cin >> x >> y >> z;

	for (int a=-3500; a<=3500; a++) {
		for (int b=-3500; b<=3500; b++) {
			if (a * x + b * y == z) {
				int a_len = 0;
				int w_num1 = 0;
				int c_num1 = 0;
				int W_num1 = 0;
				int C_num1 = 0;
				if (a < 0) {
					int abs_a = abs(a);
					c_num1 = abs_a + 2;
					W_num1 = abs_a + 1;
					a_len = c_num1 + W_num1;
				} else if (a > 0) {
					c_num1 = a;
					C_num1 = a - 1;
					a_len = c_num1 + C_num1;
				}

				int w_num2 = 0;
				int c_num2 = 0;
				int W_num2 = 0;
				int C_num2 = 0;
				int b_len = 0;
				if (b < 0) {
					int abs_b = abs(b);
					w_num2 = abs_b + 2;
					W_num2 = abs_b + 1;
					a_len = w_num2 + W_num2;
				} else if (b > 0) {
					w_num2 = b;
					C_num2 = b - 1;
					b_len = w_num2 + C_num2;
				}

				if (a_len + b_len + 1 <= 10000) {
					rep(i,c_num1) cout << 'c';
					rep(i,W_num1) cout << 'W';
					rep(i,C_num1) cout << 'C';

					rep(i,w_num2) cout << 'w';
					rep(i,W_num2) cout << 'W';
					rep(i,C_num2) cout << 'C';

					cout << 'C' << endl;
					return 0;
				}
			}
		}
	}

	cout << "mourennaihasimasenn" << endl;
}
0