結果

問題 No.438 Cwwプログラミング入門
ユーザー nebukuro09nebukuro09
提出日時 2016-10-28 23:30:43
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 482 bytes
コンパイル時間 1,822 ms
コンパイル使用メモリ 76,160 KB
実行使用メモリ 423,552 KB
最終ジャッジ日時 2024-11-24 20:12:35
合計ジャッジ時間 152,197 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
107,776 KB
testcase_01 AC 133 ms
355,968 KB
testcase_02 AC 195 ms
116,992 KB
testcase_03 AC 131 ms
355,968 KB
testcase_04 AC 260 ms
127,616 KB
testcase_05 AC 602 ms
423,424 KB
testcase_06 AC 195 ms
118,016 KB
testcase_07 AC 129 ms
327,296 KB
testcase_08 AC 605 ms
176,128 KB
testcase_09 AC 410 ms
396,160 KB
testcase_10 AC 166 ms
111,360 KB
testcase_11 AC 152 ms
358,016 KB
testcase_12 AC 197 ms
118,144 KB
testcase_13 AC 112 ms
353,152 KB
testcase_14 AC 648 ms
176,640 KB
testcase_15 AC 158 ms
358,912 KB
testcase_16 AC 634 ms
169,600 KB
testcase_17 AC 283 ms
374,656 KB
testcase_18 AC 201 ms
117,888 KB
testcase_19 AC 423 ms
391,680 KB
testcase_20 AC 683 ms
184,192 KB
testcase_21 WA -
testcase_22 AC 188 ms
116,352 KB
testcase_23 AC 234 ms
368,904 KB
testcase_24 AC 167 ms
113,920 KB
testcase_25 AC 279 ms
375,296 KB
testcase_26 WA -
testcase_27 AC 219 ms
369,344 KB
testcase_28 AC 76 ms
80,384 KB
testcase_29 AC 78 ms
328,320 KB
testcase_30 AC 161 ms
110,976 KB
testcase_31 WA -
testcase_32 AC 76 ms
80,640 KB
testcase_33 AC 184 ms
360,960 KB
testcase_34 WA -
testcase_35 AC 74 ms
328,320 KB
testcase_36 AC 74 ms
80,768 KB
testcase_37 AC 145 ms
357,376 KB
testcase_38 AC 146 ms
110,720 KB
testcase_39 WA -
testcase_40 AC 145 ms
110,080 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 116 ms
353,516 KB
testcase_44 WA -
testcase_45 AC 75 ms
327,936 KB
testcase_46 AC 135 ms
108,544 KB
testcase_47 WA -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 AC 1,493 ms
251,520 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 AC 1,782 ms
253,776 KB
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 AC 418 ms
392,192 KB
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 TLE -
testcase_77 TLE -
testcase_78 TLE -
testcase_79 TLE -
testcase_80 TLE -
testcase_81 TLE -
testcase_82 TLE -
testcase_83 TLE -
testcase_84 TLE -
testcase_85 TLE -
testcase_86 TLE -
testcase_87 TLE -
testcase_88 AC 74 ms
75,904 KB
testcase_89 AC 113 ms
101,032 KB
testcase_90 AC 115 ms
100,380 KB
testcase_91 WA -
testcase_92 AC 91 ms
77,824 KB
testcase_93 AC 74 ms
75,648 KB
testcase_94 AC 74 ms
75,264 KB
testcase_95 AC 128 ms
103,476 KB
testcase_96 AC 1,631 ms
247,028 KB
testcase_97 TLE -
testcase_98 TLE -
testcase_99 TLE -
testcase_100 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y, z = map(int, raw_input().split())
visited = set()
d = [(x, 'cC'), (y, 'wC'), (-x, 'cW'), (-y, 'wW')]

stack = [(x, 'c'), (y, 'w')]
while len(stack) > 0:
    num, code = stack.pop()
    #print num
    if num in visited or num < 0:
        continue
    if num == z:
        print code
        exit()
    visited.add(num)
    if len(code) >= 9999:
        continue
    for nn, nc in d:
        if nn >= 0:
            stack.append((num+nn, code+nc))

print 'mourennaihasimasenn'
0