結果

問題 No.438 Cwwプログラミング入門
ユーザー nebukuro09nebukuro09
提出日時 2016-10-29 00:49:32
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 658 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 76,808 KB
実行使用メモリ 78,124 KB
最終ジャッジ日時 2024-05-03 19:07:36
合計ジャッジ時間 35,461 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
76,668 KB
testcase_01 AC 89 ms
76,828 KB
testcase_02 AC 595 ms
77,716 KB
testcase_03 AC 584 ms
77,596 KB
testcase_04 AC 568 ms
77,356 KB
testcase_05 AC 579 ms
77,544 KB
testcase_06 AC 636 ms
77,448 KB
testcase_07 AC 577 ms
77,456 KB
testcase_08 AC 84 ms
76,816 KB
testcase_09 AC 71 ms
76,584 KB
testcase_10 AC 133 ms
76,860 KB
testcase_11 AC 129 ms
76,820 KB
testcase_12 AC 94 ms
76,560 KB
testcase_13 AC 563 ms
77,796 KB
testcase_14 AC 81 ms
77,068 KB
testcase_15 AC 563 ms
77,320 KB
testcase_16 AC 79 ms
76,584 KB
testcase_17 AC 95 ms
76,968 KB
testcase_18 AC 566 ms
77,836 KB
testcase_19 AC 567 ms
77,504 KB
testcase_20 AC 76 ms
76,828 KB
testcase_21 AC 79 ms
76,688 KB
testcase_22 AC 145 ms
76,836 KB
testcase_23 AC 122 ms
76,864 KB
testcase_24 AC 571 ms
77,308 KB
testcase_25 AC 76 ms
76,696 KB
testcase_26 AC 100 ms
76,704 KB
testcase_27 AC 573 ms
77,468 KB
testcase_28 AC 74 ms
75,396 KB
testcase_29 AC 112 ms
76,684 KB
testcase_30 AC 567 ms
77,556 KB
testcase_31 AC 102 ms
76,568 KB
testcase_32 AC 112 ms
76,584 KB
testcase_33 AC 94 ms
76,592 KB
testcase_34 WA -
testcase_35 AC 85 ms
76,688 KB
testcase_36 AC 86 ms
76,540 KB
testcase_37 AC 84 ms
76,708 KB
testcase_38 AC 574 ms
77,580 KB
testcase_39 AC 81 ms
76,832 KB
testcase_40 AC 578 ms
77,588 KB
testcase_41 AC 77 ms
76,804 KB
testcase_42 AC 102 ms
77,048 KB
testcase_43 AC 444 ms
77,188 KB
testcase_44 AC 78 ms
76,792 KB
testcase_45 AC 84 ms
76,972 KB
testcase_46 AC 86 ms
76,448 KB
testcase_47 AC 104 ms
77,196 KB
testcase_48 WA -
testcase_49 AC 197 ms
76,664 KB
testcase_50 AC 557 ms
77,688 KB
testcase_51 AC 561 ms
77,452 KB
testcase_52 AC 98 ms
76,480 KB
testcase_53 WA -
testcase_54 AC 576 ms
77,864 KB
testcase_55 AC 104 ms
76,808 KB
testcase_56 AC 135 ms
76,588 KB
testcase_57 AC 257 ms
76,576 KB
testcase_58 AC 546 ms
77,356 KB
testcase_59 AC 77 ms
76,556 KB
testcase_60 WA -
testcase_61 AC 72 ms
76,172 KB
testcase_62 AC 553 ms
77,240 KB
testcase_63 AC 98 ms
76,820 KB
testcase_64 AC 104 ms
76,704 KB
testcase_65 AC 556 ms
77,684 KB
testcase_66 AC 102 ms
76,608 KB
testcase_67 AC 551 ms
77,708 KB
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 AC 234 ms
76,928 KB
testcase_72 WA -
testcase_73 AC 227 ms
77,052 KB
testcase_74 AC 274 ms
76,700 KB
testcase_75 WA -
testcase_76 WA -
testcase_77 AC 246 ms
76,692 KB
testcase_78 AC 556 ms
77,960 KB
testcase_79 AC 562 ms
77,224 KB
testcase_80 AC 557 ms
77,480 KB
testcase_81 AC 554 ms
77,316 KB
testcase_82 AC 556 ms
77,336 KB
testcase_83 AC 572 ms
77,452 KB
testcase_84 AC 553 ms
77,612 KB
testcase_85 AC 565 ms
77,320 KB
testcase_86 AC 565 ms
77,832 KB
testcase_87 AC 577 ms
77,336 KB
testcase_88 WA -
testcase_89 WA -
testcase_90 AC 479 ms
77,456 KB
testcase_91 WA -
testcase_92 AC 532 ms
77,356 KB
testcase_93 WA -
testcase_94 AC 144 ms
76,840 KB
testcase_95 WA -
testcase_96 AC 577 ms
77,720 KB
testcase_97 WA -
testcase_98 AC 578 ms
77,568 KB
testcase_99 AC 562 ms
77,628 KB
testcase_100 AC 368 ms
77,564 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
    elif a <= 0 and b >= 0:
        print ('c'*abs(a) + 'w'*abs(b) + 'C'*(abs(b)-1) + 'W'*abs(a))*w
    else:
        print ('c'*(abs(a)-1) + 'w'*abs(b) + 'C'*(abs(a)+abs(b)-1))*w

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 <= 9999:
                    print_ans(a, b, z/c)
                    exit()
print 'mourennaihasimasenn'
0