結果
| 問題 |
No.400 鏡
|
| コンテスト | |
| ユーザー |
merom686
|
| 提出日時 | 2018-03-06 19:30:26 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 322 bytes |
| コンパイル時間 | 667 ms |
| コンパイル使用メモリ | 74,960 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-21 15:15:16 |
| 合計ジャッジ時間 | 1,250 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 8 |
ソースコード
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
int main() {
string s;
cin >> s;
reverse(s.begin(), s.end());
for (auto& c : s) {
c ^= '<' ^ '>';
}
cout << s << endl;
return 0;
}
merom686