結果
| 問題 | No.591 (^o^)/ |
| コンテスト | |
| ユーザー |
Kurichan0806
|
| 提出日時 | 2017-12-01 17:26:53 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 304 bytes |
| 記録 | |
| コンパイル時間 | 693 ms |
| コンパイル使用メモリ | 77,856 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-27 21:31:57 |
| 合計ジャッジ時間 | 1,145 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <iomanip>
#include <cmath>
using namespace std;
#define diff(x,y) ((x > y) ? (x - y) : (y - x))
int main() {
string str1, str2;
cin >> str1 >> str2;
cout << "(" << str1 << str2 << str1 << ")/" << endl;
return 0;
}
Kurichan0806