結果

問題 No.400 鏡
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-06-16 22:54:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 87,072 KB
実行使用メモリ 73,072 KB
最終ジャッジ日時 2023-09-06 21:33:33
合計ジャッジ時間 2,490 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
73,072 KB
testcase_01 AC 108 ms
72,756 KB
testcase_02 AC 111 ms
72,920 KB
testcase_03 AC 110 ms
72,816 KB
testcase_04 AC 108 ms
72,968 KB
testcase_05 AC 109 ms
72,924 KB
testcase_06 AC 106 ms
72,896 KB
testcase_07 AC 107 ms
72,920 KB
testcase_08 AC 109 ms
72,936 KB
testcase_09 AC 106 ms
72,948 KB
testcase_10 AC 107 ms
72,936 KB
testcase_11 AC 108 ms
73,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

S = input()[:-1]
S = S.replace('<','.').replace('>','<').replace('.','>')
S = list(S)
S.reverse()
print(''.join(S))
0