結果

問題 No.438 Cwwプログラミング入門
ユーザー nebukuro09
提出日時 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 47 WA * 10 TLE * 41
権限があれば一括ダウンロードができます

ソースコード

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