結果
問題 | No.591 (^o^)/ |
ユーザー |
|
提出日時 | 2023-08-13 11:13:41 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 307 bytes |
コンパイル時間 | 1,850 ms |
コンパイル使用メモリ | 169,252 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-21 05:36:34 |
合計ジャッジ時間 | 2,176 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 |
ソースコード
#include <bits/stdc++.h>using namespace std;using ll = long long;using llu = long long unsigned;vector<ll> dx = { 0, 0, -1, 1};vector<ll> dy = {-1, 1, 0, 0};#define MOD 1000000007int main() {char t1, t2;cin >> t1 >> t2;cout << "(" << t1 << t2 << t1 << ")/" << endl;return 0;}