結果

問題 No.438 Cwwプログラミング入門
ユーザー nebukuro09nebukuro09
提出日時 2016-10-29 00:53:03
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 688 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 76,860 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-05-03 19:09:06
合計ジャッジ時間 38,610 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
76,680 KB
testcase_01 AC 93 ms
76,800 KB
testcase_02 AC 608 ms
77,440 KB
testcase_03 AC 622 ms
77,420 KB
testcase_04 AC 617 ms
77,992 KB
testcase_05 AC 638 ms
77,952 KB
testcase_06 AC 604 ms
77,464 KB
testcase_07 AC 607 ms
77,568 KB
testcase_08 AC 92 ms
76,816 KB
testcase_09 AC 80 ms
76,836 KB
testcase_10 AC 148 ms
76,968 KB
testcase_11 AC 144 ms
76,928 KB
testcase_12 AC 110 ms
77,196 KB
testcase_13 AC 607 ms
77,500 KB
testcase_14 AC 95 ms
76,800 KB
testcase_15 AC 607 ms
77,824 KB
testcase_16 AC 86 ms
76,732 KB
testcase_17 AC 104 ms
76,828 KB
testcase_18 AC 604 ms
77,440 KB
testcase_19 AC 607 ms
77,460 KB
testcase_20 AC 86 ms
76,460 KB
testcase_21 AC 91 ms
76,576 KB
testcase_22 AC 148 ms
76,928 KB
testcase_23 AC 136 ms
76,580 KB
testcase_24 AC 590 ms
77,696 KB
testcase_25 AC 86 ms
77,056 KB
testcase_26 AC 112 ms
76,800 KB
testcase_27 AC 605 ms
77,696 KB
testcase_28 AC 80 ms
76,576 KB
testcase_29 AC 129 ms
76,600 KB
testcase_30 AC 608 ms
77,364 KB
testcase_31 AC 114 ms
76,956 KB
testcase_32 AC 126 ms
76,680 KB
testcase_33 AC 105 ms
76,800 KB
testcase_34 WA -
testcase_35 AC 93 ms
76,600 KB
testcase_36 AC 91 ms
76,772 KB
testcase_37 AC 101 ms
77,056 KB
testcase_38 AC 608 ms
77,568 KB
testcase_39 AC 93 ms
76,712 KB
testcase_40 AC 601 ms
77,948 KB
testcase_41 AC 88 ms
77,056 KB
testcase_42 AC 111 ms
76,664 KB
testcase_43 AC 474 ms
77,360 KB
testcase_44 AC 87 ms
76,444 KB
testcase_45 AC 90 ms
76,928 KB
testcase_46 AC 93 ms
76,668 KB
testcase_47 AC 113 ms
76,944 KB
testcase_48 AC 396 ms
77,340 KB
testcase_49 AC 208 ms
76,800 KB
testcase_50 AC 581 ms
77,312 KB
testcase_51 AC 593 ms
77,328 KB
testcase_52 AC 109 ms
76,568 KB
testcase_53 AC 311 ms
77,480 KB
testcase_54 AC 597 ms
77,696 KB
testcase_55 AC 118 ms
76,980 KB
testcase_56 AC 154 ms
77,056 KB
testcase_57 AC 285 ms
76,844 KB
testcase_58 AC 591 ms
77,624 KB
testcase_59 AC 87 ms
76,788 KB
testcase_60 AC 171 ms
76,448 KB
testcase_61 AC 80 ms
76,324 KB
testcase_62 AC 607 ms
77,352 KB
testcase_63 AC 110 ms
76,840 KB
testcase_64 AC 117 ms
76,836 KB
testcase_65 AC 608 ms
77,568 KB
testcase_66 AC 125 ms
76,684 KB
testcase_67 AC 599 ms
77,980 KB
testcase_68 WA -
testcase_69 AC 173 ms
76,932 KB
testcase_70 AC 228 ms
76,672 KB
testcase_71 AC 252 ms
76,800 KB
testcase_72 AC 158 ms
77,196 KB
testcase_73 AC 254 ms
77,068 KB
testcase_74 AC 285 ms
76,696 KB
testcase_75 AC 167 ms
77,184 KB
testcase_76 WA -
testcase_77 AC 284 ms
76,460 KB
testcase_78 AC 593 ms
77,944 KB
testcase_79 AC 598 ms
77,592 KB
testcase_80 AC 593 ms
77,952 KB
testcase_81 AC 599 ms
77,196 KB
testcase_82 AC 609 ms
77,368 KB
testcase_83 AC 614 ms
77,732 KB
testcase_84 AC 603 ms
77,440 KB
testcase_85 AC 613 ms
77,696 KB
testcase_86 AC 602 ms
77,312 KB
testcase_87 AC 593 ms
77,452 KB
testcase_88 AC 141 ms
77,960 KB
testcase_89 WA -
testcase_90 AC 504 ms
78,080 KB
testcase_91 WA -
testcase_92 AC 569 ms
77,884 KB
testcase_93 WA -
testcase_94 AC 159 ms
76,448 KB
testcase_95 WA -
testcase_96 AC 627 ms
77,440 KB
testcase_97 WA -
testcase_98 AC 608 ms
77,316 KB
testcase_99 AC 609 ms
77,228 KB
testcase_100 AC 399 ms
77,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y, z = map(int, raw_input().split())

def print_ans(a, b, w):
    if a >= 0 and b <= 0:
        print ('w'*abs(b) + 'c'*abs(a) + 'C'*(abs(a)-1) + 'W'*abs(b))*w+'C'*(w-1)
    elif a <= 0 and b >= 0:
        print ('c'*abs(a) + 'w'*abs(b) + 'C'*(abs(b)-1) + 'W'*abs(a))*w+'C'*(w-1)
    else:
        print ('c'*(abs(a)-1) + 'w'*abs(b) + 'C'*(abs(a)+abs(b)-1))*w+'C'*(w-1)

for a in xrange(-5000, 5000):
    for b in xrange(-5000+abs(a), 5000-abs(a)):
        c = a*x+b*y
        if c > 0 and z % c == 0:
            if a != 0 or b != 0:
                if 2*(abs(a)+abs(b))*(z/c)-1 <= 9900:
                    print_ans(a, b, z/c)
                    exit()
print 'mourennaihasimasenn'
0