結果
| 問題 |
No.2143 Only One Bracket
|
| コンテスト | |
| ユーザー |
cpbm_p
|
| 提出日時 | 2022-11-05 12:31:36 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 317 bytes |
| コンパイル時間 | 1,962 ms |
| コンパイル使用メモリ | 193,080 KB |
| 最終ジャッジ日時 | 2025-02-08 18:43:25 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | RE * 7 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int check_and_get() {
string str;
getline(cin, str);
assert(str.length() == 1);
int n = stoi(str);
assert(2 <= n && n <= 8);
return n;
}
int main() {
int n = check_and_get();
assert(n==2);
cout << "()" << endl;
cout << endl;
}
cpbm_p