結果

問題 No.438 Cwwプログラミング入門
ユーザー finefine
提出日時 2016-10-29 00:02:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,635 bytes
コンパイル時間 1,582 ms
コンパイル使用メモリ 169,932 KB
実行使用メモリ 501,872 KB
最終ジャッジ日時 2024-11-24 21:56:19
合計ジャッジ時間 56,019 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

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;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int a, b, c;
    cin >> a >> b >> c;
    int x, y;
    int d = extgcd(a, b, x, y);
    string s = "";
    if (c % d != 0) s = "mourennaihasimasenn";
    else {
        x *= c / d;
        y *= c / d;
        if (x + y > 5000) s = "mourennaihasimasenn";
        else {
            if (x < 0) {
                x = -x;
                for (int i = 0; i < x; i++) s += "c";
                for (int i = 0; i < x - 1; i++) s += "C";
                for (int i = 0; i < y; i++) s += "w";
                for (int i = 0; i < y - 1; i++) s += "C";
                s += "W";
            } else {
                if (y < 0) {
                    y = -y;
                    for (int i = 0; i < y; i++) s += "w";
                    for (int i = 0; i < y - 1; i++) s += "C";
                    for (int i = 0; i < x; i++) s += "c";
                    for (int i = 0; i < x - 1; i++) s += "C";
                    s += "W";
                } else {
                    for (int i = 0; i < x; i++) s += "c";
                    for (int i = 0; i < x - 1; i++) s += "C";
                    for (int i = 0; i < y; i++) s += "w";
                    for (int i = 0; i < y - 1; i++) s += "C";
                    if (x != 0 && y != 0) s += "C";
                }
            }
        }
    }
    cout << s << endl;
    return 0;
}
0