結果

問題 No.438 Cwwプログラミング入門
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-04-29 22:07:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,192 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 10,968 KB
実行使用メモリ 8,360 KB
最終ジャッジ日時 2023-08-16 06:54:32
合計ジャッジ時間 10,142 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,256 KB
testcase_01 AC 16 ms
8,132 KB
testcase_02 AC 18 ms
7,776 KB
testcase_03 AC 18 ms
7,772 KB
testcase_04 AC 19 ms
7,908 KB
testcase_05 AC 18 ms
7,924 KB
testcase_06 AC 20 ms
7,804 KB
testcase_07 AC 18 ms
7,772 KB
testcase_08 AC 15 ms
8,192 KB
testcase_09 AC 15 ms
8,336 KB
testcase_10 AC 16 ms
8,176 KB
testcase_11 AC 16 ms
8,088 KB
testcase_12 AC 15 ms
8,084 KB
testcase_13 AC 19 ms
7,816 KB
testcase_14 AC 15 ms
8,184 KB
testcase_15 AC 19 ms
7,828 KB
testcase_16 AC 15 ms
8,300 KB
testcase_17 AC 15 ms
8,328 KB
testcase_18 AC 18 ms
7,820 KB
testcase_19 AC 18 ms
7,832 KB
testcase_20 AC 15 ms
8,244 KB
testcase_21 WA -
testcase_22 AC 15 ms
8,144 KB
testcase_23 AC 15 ms
8,236 KB
testcase_24 AC 18 ms
7,756 KB
testcase_25 AC 15 ms
8,232 KB
testcase_26 WA -
testcase_27 AC 17 ms
7,776 KB
testcase_28 AC 15 ms
7,864 KB
testcase_29 WA -
testcase_30 AC 18 ms
7,836 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 16 ms
8,236 KB
testcase_34 AC 16 ms
7,904 KB
testcase_35 AC 15 ms
8,160 KB
testcase_36 AC 15 ms
8,148 KB
testcase_37 WA -
testcase_38 AC 19 ms
7,832 KB
testcase_39 WA -
testcase_40 AC 18 ms
7,836 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 15 ms
8,080 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 17 ms
7,776 KB
testcase_51 AC 18 ms
7,952 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 19 ms
7,840 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 19 ms
7,864 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 19 ms
7,776 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 AC 19 ms
7,904 KB
testcase_66 WA -
testcase_67 AC 18 ms
7,944 KB
testcase_68 AC 15 ms
7,744 KB
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 WA -
testcase_76 AC 16 ms
7,820 KB
testcase_77 WA -
testcase_78 AC 19 ms
7,872 KB
testcase_79 AC 19 ms
7,936 KB
testcase_80 AC 19 ms
7,820 KB
testcase_81 AC 19 ms
7,800 KB
testcase_82 AC 19 ms
7,940 KB
testcase_83 AC 18 ms
7,772 KB
testcase_84 AC 18 ms
7,940 KB
testcase_85 AC 19 ms
7,744 KB
testcase_86 AC 19 ms
7,944 KB
testcase_87 AC 19 ms
7,924 KB
testcase_88 AC 16 ms
7,788 KB
testcase_89 AC 15 ms
8,276 KB
testcase_90 AC 15 ms
7,792 KB
testcase_91 AC 16 ms
8,152 KB
testcase_92 AC 16 ms
7,936 KB
testcase_93 AC 15 ms
7,820 KB
testcase_94 AC 15 ms
7,832 KB
testcase_95 AC 17 ms
8,164 KB
testcase_96 AC 19 ms
7,820 KB
testcase_97 WA -
testcase_98 AC 19 ms
7,804 KB
testcase_99 AC 20 ms
7,748 KB
testcase_100 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

c = 'c'; w = 'w'; C = 'C'; W = 'W'
MAX = 10000

def dame():
    print("mourennaihasimasenn")

x, y, z = map(int, input().split())
if x < y:
    # x >= y となるようにそろえる
    # cとwの中身も入れ替える
    x, y = y, x
    c, w = w, c

if z == 0:
    # x - x = 0
    print('ccW')
elif x == y == 0:
    dame()
elif y == 0:
    if z % x != 0:
        dame()
    nc = z // x
    nC = nc - 1
    if nc + nC > MAX:
        dame()
    else:
        print(c * nc + C * nC)
else:
    # cの個数について全探索
    for nc in range(1, MAX):
        nC1 = nc - 1    # cの直後に置くC
        nC2 = 0         # wの直後に置くC

        # 対応する整数nwが存在しなければ次のncへ
        if (z - x * nc) % y != 0:
            continue

        nw = (z - x * nc) // y
        nW = 0
        if nw > 0:
            # +y+y...
            nC2 += nw
        elif nw < 0:
            # -y-y...
            nw = -nw
            nW += nw

        if nc + nC1 + nw + nC2 + nW <= MAX:
            # print(nc, nC1, nw, nC2, nW)
            print(c * nc + C * nC1 + w * nw + C * nC2 + W * nW)
            exit()

    # 見つからなかったらダメ
    dame()
0