結果
問題 | No.1945 Go Push! |
ユーザー |
![]() |
提出日時 | 2022-07-28 22:07:45 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 85 ms / 2,000 ms |
コード長 | 260 bytes |
コンパイル時間 | 1,425 ms |
コンパイル使用メモリ | 167,616 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 12:23:25 |
合計ジャッジ時間 | 3,478 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 |
ソースコード
#include <bits/stdc++.h>using namespace std;int main() {int n;cin >> n;vector<int> a(n);for (int i = 0; i < n; i++) {cin >> a[i];}if (n % 2 == 1) {cout << "First" << endl;} else {cout << "Second" << endl;}return 0;}