結果
問題 |
No.1945 Go Push!
|
ユーザー |
![]() |
提出日時 | 2022-05-20 22:12:23 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 372 bytes |
コンパイル時間 | 1,986 ms |
コンパイル使用メモリ | 194,560 KB |
最終ジャッジ日時 | 2025-01-29 10:46:46 |
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n; cin>>n; vector<int> A(n); rep(i,n) cin>>A[i]; if(n%2==0) cout<<"Second"<<endl; else cout<<"First"<<endl; return 0; }