結果
問題 | No.400 鏡 |
ユーザー |
|
提出日時 | 2019-09-24 08:04:31 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 287 bytes |
コンパイル時間 | 710 ms |
コンパイル使用メモリ | 76,552 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-19 04:58:18 |
合計ジャッジ時間 | 1,348 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 8 |
ソースコード
#include <iostream>#include <vector>#include <algorithm>#include <queue>#include <map>#include <set>using namespace std;typedef long long int ll;int main(){string s; cin >> s;for(int i=s.size()-1;i>=0;i--){if(s[i]=='>')cout << '<';else cout << '>';}cout << endl;}