結果

問題 No.400 鏡
ユーザー 👑 yumechiyumechi
提出日時 2016-08-22 23:12:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 156 bytes
コンパイル時間 1,638 ms
コンパイル使用メモリ 86,776 KB
実行使用メモリ 71,528 KB
最終ジャッジ日時 2023-08-07 17:53:48
合計ジャッジ時間 3,075 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,072 KB
testcase_01 AC 70 ms
71,428 KB
testcase_02 AC 71 ms
71,272 KB
testcase_03 AC 70 ms
71,064 KB
testcase_04 AC 71 ms
71,160 KB
testcase_05 AC 71 ms
71,528 KB
testcase_06 AC 70 ms
71,336 KB
testcase_07 AC 68 ms
71,196 KB
testcase_08 AC 70 ms
71,344 KB
testcase_09 AC 68 ms
71,216 KB
testcase_10 AC 69 ms
71,164 KB
testcase_11 AC 69 ms
71,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    s = input()[::-1]
    ans = ""
    for e in s:
        ans += "<" if e == ">" else ">"
    print(ans)

if __name__=="__main__":
    solve()
0