結果

問題 No.761 平均値ゲーム
ユーザー sugim48sugim48
提出日時 2018-12-19 00:59:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 206,468 KB
実行使用メモリ 8,348 KB
最終ジャッジ日時 2023-10-25 23:47:04
合計ジャッジ時間 9,940 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 WA -
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 WA -
testcase_10 AC 2 ms
4,348 KB
testcase_11 WA -
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 2 ms
4,348 KB
testcase_15 AC 2 ms
4,348 KB
testcase_16 AC 2 ms
4,348 KB
testcase_17 AC 2 ms
4,348 KB
testcase_18 AC 2 ms
4,348 KB
testcase_19 AC 2 ms
4,348 KB
testcase_20 AC 2 ms
4,348 KB
testcase_21 AC 2 ms
4,348 KB
testcase_22 AC 2 ms
4,348 KB
testcase_23 AC 2 ms
4,348 KB
testcase_24 WA -
testcase_25 AC 2 ms
4,348 KB
testcase_26 AC 2 ms
4,348 KB
testcase_27 AC 2 ms
4,348 KB
testcase_28 AC 1 ms
4,348 KB
testcase_29 AC 2 ms
4,348 KB
testcase_30 AC 1 ms
4,348 KB
testcase_31 AC 2 ms
4,348 KB
testcase_32 AC 2 ms
4,348 KB
testcase_33 AC 51 ms
6,936 KB
testcase_34 AC 60 ms
7,480 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 61 ms
7,564 KB
testcase_41 AC 57 ms
7,332 KB
testcase_42 AC 65 ms
7,748 KB
testcase_43 AC 12 ms
4,348 KB
testcase_44 AC 40 ms
6,160 KB
testcase_45 WA -
testcase_46 AC 30 ms
5,528 KB
testcase_47 WA -
testcase_48 AC 5 ms
4,348 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 6 ms
4,348 KB
testcase_52 AC 6 ms
4,348 KB
testcase_53 AC 63 ms
7,740 KB
testcase_54 AC 38 ms
5,956 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 66 ms
7,820 KB
testcase_58 AC 11 ms
4,348 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 59 ms
7,328 KB
testcase_65 WA -
testcase_66 WA -
testcase_67 AC 19 ms
4,772 KB
testcase_68 AC 8 ms
4,348 KB
testcase_69 AC 50 ms
6,868 KB
testcase_70 AC 34 ms
5,712 KB
testcase_71 AC 15 ms
4,516 KB
testcase_72 AC 7 ms
4,348 KB
testcase_73 AC 21 ms
4,944 KB
testcase_74 AC 14 ms
4,420 KB
testcase_75 WA -
testcase_76 AC 18 ms
4,756 KB
testcase_77 AC 52 ms
6,840 KB
testcase_78 AC 34 ms
5,728 KB
testcase_79 AC 13 ms
4,348 KB
testcase_80 WA -
testcase_81 AC 9 ms
4,348 KB
testcase_82 WA -
testcase_83 WA -
testcase_84 WA -
testcase_85 WA -
testcase_86 AC 73 ms
8,240 KB
testcase_87 WA -
testcase_88 AC 73 ms
8,240 KB
testcase_89 WA -
testcase_90 AC 72 ms
8,240 KB
testcase_91 AC 71 ms
8,240 KB
testcase_92 AC 73 ms
8,240 KB
testcase_93 AC 2 ms
4,348 KB
testcase_94 AC 1 ms
4,348 KB
testcase_95 AC 42 ms
4,348 KB
testcase_96 WA -
testcase_97 WA -
testcase_98 AC 47 ms
5,764 KB
testcase_99 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, N) for (int i = 0; i < (N); i++)
#define all(a) (a).begin(), (a).end()
#define pb push_back

using ll = long long;
using i_i = tuple<int, int>;

int main() {
    int N; cin >> N;
    set<ll> st;
    rep(i, N) {
        ll x; cin >> x;
        st.insert(x);
    }
    cout << (st.size() % 2 ? "First" : "Second") << endl;
}
0