結果

問題 No.438 Cwwプログラミング入門
ユーザー ckawatakckawatak
提出日時 2019-04-20 18:52:00
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,324 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 532,028 KB
最終ジャッジ日時 2024-10-01 20:35:58
合計ジャッジ時間 17,144 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,216 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 304 ms
57,856 KB
testcase_03 AC 308 ms
57,856 KB
testcase_04 AC 221 ms
233,216 KB
testcase_05 AC 110 ms
144,768 KB
testcase_06 AC 302 ms
57,856 KB
testcase_07 AC 303 ms
57,472 KB
testcase_08 AC 36 ms
51,840 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 RE -
testcase_11 AC 37 ms
52,096 KB
testcase_12 AC 36 ms
52,352 KB
testcase_13 AC 304 ms
57,856 KB
testcase_14 RE -
testcase_15 AC 309 ms
57,344 KB
testcase_16 RE -
testcase_17 AC 36 ms
52,096 KB
testcase_18 AC 304 ms
57,984 KB
testcase_19 AC 303 ms
57,728 KB
testcase_20 AC 37 ms
51,968 KB
testcase_21 AC 36 ms
51,584 KB
testcase_22 RE -
testcase_23 AC 35 ms
51,968 KB
testcase_24 AC 321 ms
57,984 KB
testcase_25 AC 36 ms
51,840 KB
testcase_26 RE -
testcase_27 AC 302 ms
57,856 KB
testcase_28 RE -
testcase_29 AC 39 ms
51,968 KB
testcase_30 AC 302 ms
57,344 KB
testcase_31 AC 34 ms
51,968 KB
testcase_32 AC 35 ms
52,352 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 36 ms
51,840 KB
testcase_36 AC 36 ms
51,840 KB
testcase_37 RE -
testcase_38 AC 305 ms
57,856 KB
testcase_39 AC 40 ms
51,840 KB
testcase_40 AC 299 ms
57,472 KB
testcase_41 AC 37 ms
52,096 KB
testcase_42 AC 37 ms
51,968 KB
testcase_43 AC 172 ms
57,088 KB
testcase_44 AC 36 ms
52,352 KB
testcase_45 AC 36 ms
51,456 KB
testcase_46 RE -
testcase_47 AC 36 ms
51,456 KB
testcase_48 AC 41 ms
59,008 KB
testcase_49 WA -
testcase_50 AC 305 ms
57,344 KB
testcase_51 AC 42 ms
59,904 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 AC 302 ms
57,472 KB
testcase_55 RE -
testcase_56 AC 38 ms
57,984 KB
testcase_57 WA -
testcase_58 AC 303 ms
57,472 KB
testcase_59 AC 41 ms
59,008 KB
testcase_60 AC 35 ms
51,584 KB
testcase_61 RE -
testcase_62 AC 303 ms
57,856 KB
testcase_63 WA -
testcase_64 AC 43 ms
59,520 KB
testcase_65 AC 307 ms
57,856 KB
testcase_66 AC 37 ms
51,584 KB
testcase_67 AC 304 ms
57,472 KB
testcase_68 RE -
testcase_69 AC 40 ms
51,584 KB
testcase_70 RE -
testcase_71 MLE -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
testcase_92 -- -
testcase_93 -- -
testcase_94 -- -
testcase_95 -- -
testcase_96 -- -
testcase_97 -- -
testcase_98 -- -
testcase_99 -- -
testcase_100 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

MAX = 100000000

def bsearch(min, max, target):
    while min < max:
        middle = (min + max) // 2
        if middle == target:
            return middle
        elif middle < target:
            min = middle + 1
        elif target < middle:
            max = middle -1
        else:
            return -1

def encode(p, q, negative):
    code = []

    if positive:
        for _ in range(p):
            code.append('c')
        for _ in range(q):
            code.append('w')
        for _ in range(p+q-1):
            code.append('C')
    else:
        for _ in range(q):
            code.append('w')
        for _ in range(p):
            code.append('c')
        for _ in range(p-1):
            code.append('C')
        for _ in range(q):
            code.append('W')
    
    return ''.join(code)
        
X,Y,Z = list(map(int, input().split()))

# p * X + q * Y = Z
coef = None
positive = True
for p in range(MAX+1):
    rest = Z - p * X
    if rest % Y == 0:
        target = rest // Y
        if target < 0:
            positive = False
        q = bsearch(0, MAX+1, abs(target))
        if q != -1:
            coef = (p,q)
            break
        
if coef:
    p,q = coef
    code = encode(p, q, positive)
    if 10000 < len(code):
        print('NO')
    else:
        print(code)
else:
    print('NO')
0