結果

問題 No.438 Cwwプログラミング入門
ユーザー nebukuro09nebukuro09
提出日時 2016-10-28 23:40:26
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 167,896 KB
最終ジャッジ日時 2024-11-24 20:29:31
合計ジャッジ時間 52,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
13,636 KB
testcase_01 WA -
testcase_02 AC 52 ms
40,704 KB
testcase_03 AC 51 ms
137,220 KB
testcase_04 AC 53 ms
40,940 KB
testcase_05 AC 58 ms
136,788 KB
testcase_06 AC 52 ms
40,960 KB
testcase_07 AC 52 ms
139,104 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 50 ms
100,724 KB
testcase_14 WA -
testcase_15 AC 51 ms
35,200 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 51 ms
34,176 KB
testcase_19 AC 53 ms
35,668 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 51 ms
34,944 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 50 ms
35,072 KB
testcase_28 AC 11 ms
6,016 KB
testcase_29 AC 11 ms
6,144 KB
testcase_30 AC 50 ms
35,584 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 11 ms
6,144 KB
testcase_34 AC 11 ms
6,272 KB
testcase_35 WA -
testcase_36 AC 11 ms
6,144 KB
testcase_37 WA -
testcase_38 AC 53 ms
35,328 KB
testcase_39 WA -
testcase_40 AC 51 ms
35,712 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 21 ms
6,528 KB
testcase_44 WA -
testcase_45 AC 11 ms
6,016 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 TLE -
testcase_49 WA -
testcase_50 AC 91 ms
36,084 KB
testcase_51 AC 291 ms
38,124 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 78 ms
36,428 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 TLE -
testcase_58 AC 1,547 ms
68,256 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 333 ms
39,348 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 AC 128 ms
38,580 KB
testcase_66 WA -
testcase_67 AC 53 ms
35,172 KB
testcase_68 AC 11 ms
6,144 KB
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 TLE -
testcase_75 WA -
testcase_76 AC 11 ms
6,016 KB
testcase_77 TLE -
testcase_78 AC 457 ms
42,900 KB
testcase_79 AC 1,232 ms
50,516 KB
testcase_80 AC 341 ms
39,048 KB
testcase_81 TLE -
testcase_82 AC 353 ms
38,348 KB
testcase_83 AC 578 ms
42,532 KB
testcase_84 AC 460 ms
43,392 KB
testcase_85 TLE -
testcase_86 AC 369 ms
38,400 KB
testcase_87 TLE -
testcase_88 AC 11 ms
6,272 KB
testcase_89 AC 21 ms
6,528 KB
testcase_90 AC 21 ms
6,656 KB
testcase_91 WA -
testcase_92 AC 20 ms
6,528 KB
testcase_93 AC 11 ms
6,144 KB
testcase_94 AC 11 ms
6,144 KB
testcase_95 WA -
testcase_96 AC 91 ms
35,452 KB
testcase_97 TLE -
testcase_98 AC 489 ms
43,716 KB
testcase_99 AC 1,761 ms
68,204 KB
testcase_100 WA -
権限があれば一括ダウンロードができます

ソースコード

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 num+nn not in visited and num+nn >= 0:
            stack.append((num+nn, code+nc))

print 'mourennaihasimasenn'
0