結果

問題 No.761 平均値ゲーム
ユーザー sugim48sugim48
提出日時 2018-12-19 00:59:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 205,584 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-09-25 07:51:03
合計ジャッジ時間 8,796 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 WA -
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 WA -
testcase_10 AC 2 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 WA -
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 55 ms
7,040 KB
testcase_34 AC 63 ms
7,424 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 64 ms
7,552 KB
testcase_41 AC 62 ms
7,296 KB
testcase_42 AC 69 ms
7,680 KB
testcase_43 AC 12 ms
6,940 KB
testcase_44 AC 42 ms
6,944 KB
testcase_45 WA -
testcase_46 AC 32 ms
6,944 KB
testcase_47 WA -
testcase_48 AC 4 ms
6,940 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 6 ms
6,940 KB
testcase_52 AC 7 ms
6,944 KB
testcase_53 AC 69 ms
7,680 KB
testcase_54 AC 39 ms
6,944 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 69 ms
7,680 KB
testcase_58 AC 11 ms
6,944 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 61 ms
7,296 KB
testcase_65 WA -
testcase_66 WA -
testcase_67 AC 20 ms
6,940 KB
testcase_68 AC 9 ms
6,944 KB
testcase_69 AC 53 ms
6,940 KB
testcase_70 AC 35 ms
6,944 KB
testcase_71 AC 16 ms
6,944 KB
testcase_72 AC 7 ms
6,944 KB
testcase_73 AC 23 ms
6,940 KB
testcase_74 AC 14 ms
6,940 KB
testcase_75 WA -
testcase_76 AC 20 ms
6,944 KB
testcase_77 AC 52 ms
6,940 KB
testcase_78 AC 35 ms
6,940 KB
testcase_79 AC 13 ms
6,944 KB
testcase_80 WA -
testcase_81 AC 9 ms
6,944 KB
testcase_82 WA -
testcase_83 WA -
testcase_84 WA -
testcase_85 WA -
testcase_86 AC 75 ms
8,192 KB
testcase_87 WA -
testcase_88 AC 76 ms
8,192 KB
testcase_89 WA -
testcase_90 AC 77 ms
8,192 KB
testcase_91 AC 76 ms
8,192 KB
testcase_92 AC 74 ms
8,064 KB
testcase_93 AC 2 ms
6,940 KB
testcase_94 AC 2 ms
6,940 KB
testcase_95 AC 45 ms
6,940 KB
testcase_96 WA -
testcase_97 WA -
testcase_98 AC 48 ms
6,940 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