結果
問題 | No.591 (^o^)/ |
ユーザー | hibikusan |
提出日時 | 2018-03-25 20:33:49 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 916 bytes |
コンパイル時間 | 764 ms |
コンパイル使用メモリ | 89,152 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 06:11:43 |
合計ジャッジ時間 | 1,388 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
ソースコード
#include <set> #include <map> #include <list> #include <queue> #include <stack> #include <cmath> #include <ctime> #include <cstdio> #include <vector> #include <string> #include <bitset> #include <cctype> #include <cstdlib> #include <cstring> #include <utility> #include <numeric> #include <complex> #include <sstream> #include <fstream> #include <functional> #include <iomanip> #include <cassert> #include <iostream> #include <iterator> #include <algorithm> using namespace std; typedef long long ll; const double EPS = 1e-9; typedef vector<int> vec; typedef pair<int, int> P; #define rep(n) REP(i, 0, n) #define ALL(v) v.begin(), v.end() #define in(a) cin >> a; #define out(a) cout << a << endl; #define REP(i, x, n) for(int i = x; i < n; i++) #define INF 100000000 int dy[] = { 1,0,-1,0 }, dx[] = { 0,1,0,-1 }; int main() { char t1, t2; cin >> t1 >> t2; cout << "(" << t1 << t2 << t1 << ")/\n"; return 0; }