結果

問題 No.438 Cwwプログラミング入門
ユーザー nebukuro09nebukuro09
提出日時 2016-10-29 00:41:41
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 646 bytes
コンパイル時間 1,653 ms
コンパイル使用メモリ 76,956 KB
実行使用メモリ 78,120 KB
最終ジャッジ日時 2024-11-24 22:37:59
合計ジャッジ時間 39,103 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
76,992 KB
testcase_01 AC 87 ms
76,704 KB
testcase_02 AC 632 ms
77,860 KB
testcase_03 AC 633 ms
77,456 KB
testcase_04 AC 635 ms
77,724 KB
testcase_05 AC 634 ms
77,596 KB
testcase_06 AC 631 ms
77,456 KB
testcase_07 AC 631 ms
77,576 KB
testcase_08 AC 90 ms
76,960 KB
testcase_09 AC 77 ms
76,296 KB
testcase_10 AC 146 ms
77,120 KB
testcase_11 AC 143 ms
76,736 KB
testcase_12 AC 107 ms
76,948 KB
testcase_13 AC 632 ms
77,628 KB
testcase_14 AC 95 ms
76,960 KB
testcase_15 AC 634 ms
77,588 KB
testcase_16 AC 86 ms
76,836 KB
testcase_17 AC 106 ms
76,836 KB
testcase_18 AC 634 ms
77,712 KB
testcase_19 AC 626 ms
77,992 KB
testcase_20 AC 87 ms
76,960 KB
testcase_21 AC 89 ms
76,688 KB
testcase_22 AC 148 ms
76,732 KB
testcase_23 AC 137 ms
76,960 KB
testcase_24 AC 626 ms
78,008 KB
testcase_25 AC 87 ms
76,864 KB
testcase_26 AC 111 ms
76,912 KB
testcase_27 AC 629 ms
77,860 KB
testcase_28 AC 78 ms
75,652 KB
testcase_29 AC 127 ms
77,088 KB
testcase_30 AC 629 ms
77,592 KB
testcase_31 AC 113 ms
76,584 KB
testcase_32 AC 126 ms
76,808 KB
testcase_33 AC 103 ms
76,576 KB
testcase_34 WA -
testcase_35 AC 91 ms
76,724 KB
testcase_36 AC 91 ms
77,240 KB
testcase_37 AC 96 ms
76,972 KB
testcase_38 AC 635 ms
77,960 KB
testcase_39 AC 89 ms
76,824 KB
testcase_40 AC 631 ms
77,448 KB
testcase_41 AC 86 ms
76,700 KB
testcase_42 AC 108 ms
76,976 KB
testcase_43 AC 489 ms
77,476 KB
testcase_44 AC 87 ms
76,808 KB
testcase_45 AC 90 ms
76,860 KB
testcase_46 AC 93 ms
76,968 KB
testcase_47 AC 115 ms
76,808 KB
testcase_48 WA -
testcase_49 AC 209 ms
76,576 KB
testcase_50 AC 615 ms
77,596 KB
testcase_51 AC 615 ms
77,480 KB
testcase_52 AC 107 ms
76,932 KB
testcase_53 WA -
testcase_54 AC 616 ms
78,100 KB
testcase_55 AC 120 ms
76,960 KB
testcase_56 AC 154 ms
77,204 KB
testcase_57 AC 288 ms
76,704 KB
testcase_58 AC 615 ms
77,968 KB
testcase_59 AC 90 ms
76,788 KB
testcase_60 WA -
testcase_61 AC 80 ms
76,308 KB
testcase_62 AC 620 ms
77,612 KB
testcase_63 AC 111 ms
76,932 KB
testcase_64 AC 119 ms
76,796 KB
testcase_65 AC 613 ms
77,468 KB
testcase_66 AC 113 ms
77,236 KB
testcase_67 AC 613 ms
78,000 KB
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 AC 252 ms
77,228 KB
testcase_72 WA -
testcase_73 AC 252 ms
77,172 KB
testcase_74 AC 286 ms
77,072 KB
testcase_75 WA -
testcase_76 WA -
testcase_77 AC 282 ms
77,220 KB
testcase_78 AC 611 ms
78,008 KB
testcase_79 AC 613 ms
77,592 KB
testcase_80 AC 615 ms
77,628 KB
testcase_81 AC 614 ms
77,584 KB
testcase_82 AC 618 ms
77,348 KB
testcase_83 AC 615 ms
77,988 KB
testcase_84 AC 619 ms
77,448 KB
testcase_85 AC 619 ms
77,468 KB
testcase_86 AC 615 ms
77,752 KB
testcase_87 AC 614 ms
77,600 KB
testcase_88 WA -
testcase_89 WA -
testcase_90 AC 525 ms
77,472 KB
testcase_91 WA -
testcase_92 AC 570 ms
77,732 KB
testcase_93 WA -
testcase_94 AC 156 ms
76,828 KB
testcase_95 WA -
testcase_96 AC 626 ms
77,584 KB
testcase_97 WA -
testcase_98 AC 611 ms
77,472 KB
testcase_99 AC 603 ms
77,712 KB
testcase_100 AC 394 ms
78,072 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)
    elif a <= 0 and b >= 0:
        print 'c'*abs(a) + 'w'*abs(b) + 'C'*(abs(b)-1) + 'W'*abs(a)
    else:
        print 'c'*(abs(a)-1) + 'w'*abs(b) + 'C'*(abs(a)+abs(b)-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 <= 9999:
                    print_ans(a, b, z/c)
                    exit()
print 'mourennaihasimasenn'
0