結果

問題 No.400 鏡
ユーザー ynyn
提出日時 2016-07-22 22:29:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 53,188 KB
最終ジャッジ日時 2024-11-06 09:00:15
合計ジャッジ時間 1,268 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,188 KB
testcase_01 AC 44 ms
52,728 KB
testcase_02 AC 41 ms
52,000 KB
testcase_03 AC 38 ms
52,532 KB
testcase_04 AC 39 ms
52,824 KB
testcase_05 AC 39 ms
52,124 KB
testcase_06 AC 40 ms
52,684 KB
testcase_07 AC 39 ms
52,732 KB
testcase_08 AC 40 ms
52,472 KB
testcase_09 AC 41 ms
52,684 KB
testcase_10 AC 39 ms
52,816 KB
testcase_11 AC 40 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = list(input())
s = s[::-1]
ans = ""

for S in s:
    if S == ">":
        ans += "<"
    else:
        ans += ">"
print(ans)
0