結果
| 問題 | No.1945 Go Push! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-21 00:38:50 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 515 bytes |
| 記録 | |
| コンパイル時間 | 1,738 ms |
| コンパイル使用メモリ | 191,984 KB |
| 最終ジャッジ日時 | 2025-01-29 12:23:37 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vll = vector<ll>;
#define all(A) A.begin(),A.end()
#define rep(i, n) for (ll i = 0; i < (ll) (n); i++)
bool chmax(ll& p, ll q) {
if (p < q) {
p = q;
return 1;
}
else {
return 0;
}
}
bool chmin(ll& p, ll q) {
if (p > q) {
p = q;
return 1;
}
else {
return 0;
}
}
int main() {
ll N;
cin>>N;
cout<<(N%2==0?"Second":"First")<<endl;
}