結果

問題 No.400 鏡
ユーザー pluto77
提出日時 2016-07-23 08:48:11
言語 Python2
(2.7.18)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-06 14:46:04
合計ジャッジ時間 746 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
#yuki400

s=list(raw_input())
for i in xrange(len(s)):
 if s[i]=='>':
  s[i]='<'
 else:
  s[i]='>'
s.reverse()
t=''.join(s)
print t
0