結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,184 KB
testcase_01 AC 16 ms
8,084 KB
testcase_02 AC 22 ms
7,780 KB
testcase_03 AC 22 ms
7,784 KB
testcase_04 AC 22 ms
7,772 KB
testcase_05 AC 22 ms
7,804 KB
testcase_06 AC 21 ms
7,856 KB
testcase_07 AC 22 ms
7,728 KB
testcase_08 AC 16 ms
8,168 KB
testcase_09 AC 16 ms
8,176 KB
testcase_10 AC 16 ms
8,164 KB
testcase_11 AC 16 ms
8,156 KB
testcase_12 AC 16 ms
8,276 KB
testcase_13 AC 22 ms
7,780 KB
testcase_14 AC 16 ms
8,328 KB
testcase_15 AC 23 ms
7,832 KB
testcase_16 AC 16 ms
8,324 KB
testcase_17 AC 16 ms
8,228 KB
testcase_18 AC 22 ms
7,868 KB
testcase_19 AC 22 ms
7,956 KB
testcase_20 AC 16 ms
8,276 KB
testcase_21 WA -
testcase_22 AC 16 ms
8,324 KB
testcase_23 AC 16 ms
8,276 KB
testcase_24 AC 22 ms
7,796 KB
testcase_25 AC 16 ms
8,240 KB
testcase_26 WA -
testcase_27 AC 23 ms
7,776 KB
testcase_28 AC 16 ms
7,776 KB
testcase_29 WA -
testcase_30 AC 22 ms
7,856 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 15 ms
8,224 KB
testcase_34 AC 16 ms
7,788 KB
testcase_35 AC 16 ms
8,220 KB
testcase_36 AC 16 ms
8,152 KB
testcase_37 WA -
testcase_38 AC 22 ms
7,920 KB
testcase_39 WA -
testcase_40 AC 22 ms
7,800 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 16 ms
8,088 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 22 ms
7,792 KB
testcase_51 AC 22 ms
7,784 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 22 ms
7,724 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 23 ms
7,836 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 22 ms
7,788 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 AC 22 ms
7,924 KB
testcase_66 WA -
testcase_67 AC 23 ms
7,860 KB
testcase_68 AC 17 ms
7,876 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,776 KB
testcase_77 WA -
testcase_78 AC 23 ms
7,916 KB
testcase_79 AC 24 ms
7,968 KB
testcase_80 AC 24 ms
7,724 KB
testcase_81 AC 23 ms
7,780 KB
testcase_82 AC 23 ms
7,780 KB
testcase_83 AC 23 ms
7,860 KB
testcase_84 AC 22 ms
7,856 KB
testcase_85 AC 23 ms
7,832 KB
testcase_86 AC 23 ms
7,872 KB
testcase_87 AC 24 ms
7,784 KB
testcase_88 AC 16 ms
7,796 KB
testcase_89 AC 16 ms
8,180 KB
testcase_90 AC 16 ms
7,932 KB
testcase_91 AC 16 ms
8,188 KB
testcase_92 AC 16 ms
7,876 KB
testcase_93 AC 16 ms
7,816 KB
testcase_94 AC 16 ms
7,804 KB
testcase_95 AC 18 ms
8,300 KB
testcase_96 AC 22 ms
7,928 KB
testcase_97 WA -
testcase_98 AC 23 ms
7,784 KB
testcase_99 AC 23 ms
7,816 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):
            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