結果

問題 No.438 Cwwプログラミング入門
ユーザー uenokuuenoku
提出日時 2016-11-19 01:08:19
言語 C++11
(gcc 11.4.0)
結果
OLE  
実行時間 -
コード長 2,137 bytes
コンパイル時間 770 ms
コンパイル使用メモリ 86,576 KB
実行使用メモリ 13,768 KB
最終ジャッジ日時 2024-11-26 10:35:41
合計ジャッジ時間 136,397 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "math.h"
#include <algorithm>
#include <complex>
#include <cstdio>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <string>
#include <vector>
#define ifor(i, a, b) for (int i = (a); i < (b); i++)
#define rfor(i, a, b) for (int i = (b)-1; i >= (a); i--)
#define rep(i, n) for (int i = 0; i < (n); i++)
#define rrep(i, n) for (int i = (n)-1; i >= 0; i--)
using namespace std;
typedef long double ld;
typedef long long int lli;
typedef long long int ll;
typedef complex<double> P;
const double eps = 1e-11;
int vex[4] = {1, 0, -1, 0};
int vey[4] = {0, 1, 0, -1};
typedef vector<double> Vec;
typedef vector<int> vec;
typedef vector<Vec> MAT;
typedef vector<vec> mat;
lli MOD = 1000000007;
#define MAX 200005
#define inf MAX
lli gcd(lli a, lli b)
{
    return b > a ? gcd(b, a) : (b == 0 ? a : gcd(b, a % b));
}

lli extgcd(lli a, lli b, lli& x, lli& y)
{
    int g = a;
    x = 1;
    y = 0;
    if (b != 0)
        g = extgcd(b, a % b, y, x), y -= (a / b) * x;
    return g;
}
int main()
{
    lli x, y, z, tx = 0, ty = 0;
    cin >> x >> y >> z;
    //cout << extgcd(x, y, tx, ty) << endl;
    if (z % extgcd(x, y, tx, ty) != 0) {
        cout << "NO" << endl;
    } else {
        tx
            *= (z / gcd(x, y));
        ty *= (z / gcd(x, y));
        if (tx > 0) {
            cout << "c";
            rep(i, tx - 1)
            {
                cout << "cC";
            }
        } else if (tx == 0) {
            cout << "ccW";
        } else {
            tx = -tx;
            rep(i, tx + 2)
            {
                cout << "c";
            }
            rep(i, tx + 1)
            {
                cout << "W";
            }
        }
        if (ty > 0) {
            cout << "w";
            rep(i, ty - 1)
            {
                cout << "wC";
            }

        } else if (ty == 0) {
            cout << "wwW";
        } else {
            ty = -ty;
            rep(i, ty + 2)
            {
                cout << "w";
            }
            rep(i, ty + 1)
            {
                cout << "W";
            }
        }
        cout << "C" << endl;
    }
}
0