結果
| 問題 |
No.3140 Weird Parentheses Game
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-05-16 21:38:06 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 188 bytes |
| コンパイル時間 | 3,138 ms |
| コンパイル使用メモリ | 271,452 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2025-05-16 21:38:12 |
| 合計ジャッジ時間 | 4,007 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 21 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll=long long;
int main() {
int n;
cin>>n;
if (n%2==1) {
cout<<"First";
}
else {
cout<<"Second";
}
return 0;
}