結果
| 問題 | No.400 鏡 |
| コンテスト | |
| ユーザー |
len_prog
|
| 提出日時 | 2016-12-06 11:25:36 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
AC
|
| 実行時間 | 81 ms / 2,000 ms |
| コード長 | 292 bytes |
| 記録 | |
| コンパイル時間 | 131 ms |
| コンパイル使用メモリ | 77,088 KB |
| 最終ジャッジ日時 | 2025-12-03 22:52:22 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 8 |
ソースコード
# -*- coding: utf-8 -*-
from __future__ import print_function
from __future__ import division
from __future__ import unicode_literals
import math
import itertools
S = raw_input()
reversed = S[::-1]
for ch in reversed:
output = "<" if ch == ">" else ">"
print(output,end="")
print()
len_prog