結果

問題 No.438 Cwwプログラミング入門
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-05-05 21:33:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,370 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 10,908 KB
実行使用メモリ 8,352 KB
最終ジャッジ日時 2023-08-16 06:55:42
合計ジャッジ時間 10,873 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,236 KB
testcase_01 AC 16 ms
8,176 KB
testcase_02 AC 21 ms
7,780 KB
testcase_03 AC 22 ms
7,744 KB
testcase_04 AC 22 ms
7,776 KB
testcase_05 AC 22 ms
7,856 KB
testcase_06 AC 21 ms
7,960 KB
testcase_07 AC 21 ms
7,868 KB
testcase_08 AC 16 ms
8,292 KB
testcase_09 AC 16 ms
8,308 KB
testcase_10 AC 16 ms
8,328 KB
testcase_11 AC 16 ms
8,172 KB
testcase_12 AC 16 ms
8,288 KB
testcase_13 AC 21 ms
7,872 KB
testcase_14 AC 16 ms
8,252 KB
testcase_15 AC 21 ms
7,772 KB
testcase_16 AC 16 ms
8,336 KB
testcase_17 AC 16 ms
8,232 KB
testcase_18 AC 21 ms
7,876 KB
testcase_19 AC 21 ms
7,784 KB
testcase_20 AC 16 ms
8,156 KB
testcase_21 WA -
testcase_22 AC 15 ms
8,276 KB
testcase_23 AC 15 ms
8,296 KB
testcase_24 AC 21 ms
7,864 KB
testcase_25 AC 15 ms
8,288 KB
testcase_26 WA -
testcase_27 AC 22 ms
7,912 KB
testcase_28 AC 16 ms
7,748 KB
testcase_29 WA -
testcase_30 AC 21 ms
7,940 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 16 ms
8,220 KB
testcase_34 AC 16 ms
7,772 KB
testcase_35 AC 16 ms
8,168 KB
testcase_36 AC 16 ms
8,260 KB
testcase_37 WA -
testcase_38 AC 21 ms
7,820 KB
testcase_39 WA -
testcase_40 AC 21 ms
7,828 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 16 ms
8,308 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 21 ms
7,812 KB
testcase_51 AC 21 ms
7,776 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 22 ms
7,840 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 22 ms
7,796 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 21 ms
7,860 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 AC 21 ms
7,832 KB
testcase_66 WA -
testcase_67 AC 22 ms
7,812 KB
testcase_68 AC 16 ms
7,776 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,952 KB
testcase_77 WA -
testcase_78 AC 23 ms
7,772 KB
testcase_79 AC 22 ms
7,832 KB
testcase_80 AC 23 ms
7,916 KB
testcase_81 AC 23 ms
7,920 KB
testcase_82 AC 22 ms
7,832 KB
testcase_83 AC 22 ms
7,920 KB
testcase_84 AC 22 ms
7,824 KB
testcase_85 AC 22 ms
7,816 KB
testcase_86 AC 23 ms
7,772 KB
testcase_87 AC 22 ms
7,828 KB
testcase_88 AC 16 ms
7,912 KB
testcase_89 AC 17 ms
8,264 KB
testcase_90 AC 16 ms
7,780 KB
testcase_91 AC 16 ms
8,264 KB
testcase_92 AC 16 ms
7,800 KB
testcase_93 AC 16 ms
7,744 KB
testcase_94 AC 16 ms
7,780 KB
testcase_95 AC 17 ms
8,196 KB
testcase_96 AC 22 ms
7,952 KB
testcase_97 WA -
testcase_98 AC 23 ms
7,816 KB
testcase_99 AC 23 ms
7,956 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:
    for k in range(2):
        if k == 1:
            # x, y を交換
            x, y = y, x
            c, w = w, c
        # cの個数が正だとして全探索
        for nc in range(1, MAX):
            nC = nc - 1

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

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

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

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