結果
問題 | No.439 チワワのなる木 |
ユーザー |
|
提出日時 | 2016-10-28 23:40:03 |
言語 | PyPy2 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 512 bytes |
コンパイル時間 | 1,337 ms |
コンパイル使用メモリ | 76,928 KB |
実行使用メモリ | 75,776 KB |
最終ジャッジ日時 | 2024-11-24 06:32:07 |
合計ジャッジ時間 | 5,098 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 28 |
ソースコード
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'