結果
| 問題 | No.400 鏡 |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2021-02-12 07:06:07 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 64 ms / 2,000 ms |
| + 716µs | |
| コード長 | 93 bytes |
| 記録 | |
| コンパイル時間 | 239 ms |
| コンパイル使用メモリ | 96,108 KB |
| 実行使用メモリ | 78,976 KB |
| 最終ジャッジ日時 | 2026-08-17 13:33:36 |
| 合計ジャッジ時間 | 2,400 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 8 |
ソースコード
def f(s):
return "<" if s==">" else ">"
s = input()
print("".join(f(t) for t in s[::-1]))
convexineq