結果

問題 No.761 平均値ゲーム
ユーザー rlangevinrlangevin
提出日時 2023-10-20 08:19:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 107 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 81,496 KB
実行使用メモリ 99,692 KB
最終ジャッジ日時 2023-10-20 08:20:05
合計ジャッジ時間 12,127 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,240 KB
testcase_01 AC 38 ms
53,240 KB
testcase_02 AC 35 ms
53,240 KB
testcase_03 AC 36 ms
53,240 KB
testcase_04 AC 35 ms
53,240 KB
testcase_05 AC 36 ms
53,240 KB
testcase_06 WA -
testcase_07 AC 36 ms
53,240 KB
testcase_08 AC 36 ms
53,240 KB
testcase_09 WA -
testcase_10 AC 35 ms
53,240 KB
testcase_11 WA -
testcase_12 AC 36 ms
53,240 KB
testcase_13 AC 35 ms
53,240 KB
testcase_14 AC 36 ms
53,240 KB
testcase_15 AC 35 ms
53,240 KB
testcase_16 AC 35 ms
53,240 KB
testcase_17 AC 36 ms
53,240 KB
testcase_18 AC 36 ms
53,240 KB
testcase_19 AC 35 ms
53,240 KB
testcase_20 AC 37 ms
53,240 KB
testcase_21 AC 36 ms
53,240 KB
testcase_22 AC 36 ms
53,240 KB
testcase_23 AC 36 ms
53,240 KB
testcase_24 WA -
testcase_25 AC 36 ms
53,240 KB
testcase_26 AC 35 ms
53,240 KB
testcase_27 AC 36 ms
53,240 KB
testcase_28 AC 36 ms
53,240 KB
testcase_29 AC 36 ms
53,240 KB
testcase_30 AC 35 ms
53,240 KB
testcase_31 AC 36 ms
53,240 KB
testcase_32 AC 35 ms
53,240 KB
testcase_33 AC 71 ms
88,008 KB
testcase_34 AC 70 ms
93,696 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 70 ms
95,860 KB
testcase_41 AC 66 ms
90,868 KB
testcase_42 AC 71 ms
96,092 KB
testcase_43 AC 43 ms
65,096 KB
testcase_44 AC 57 ms
81,028 KB
testcase_45 WA -
testcase_46 AC 53 ms
76,084 KB
testcase_47 WA -
testcase_48 AC 40 ms
59,252 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 41 ms
61,300 KB
testcase_52 AC 41 ms
61,300 KB
testcase_53 AC 72 ms
96,076 KB
testcase_54 AC 59 ms
80,772 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 74 ms
96,188 KB
testcase_58 AC 42 ms
64,808 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 68 ms
90,868 KB
testcase_65 WA -
testcase_66 WA -
testcase_67 AC 48 ms
68,672 KB
testcase_68 AC 41 ms
61,748 KB
testcase_69 AC 66 ms
87,928 KB
testcase_70 AC 56 ms
78,804 KB
testcase_71 AC 46 ms
66,820 KB
testcase_72 AC 41 ms
61,580 KB
testcase_73 AC 48 ms
69,800 KB
testcase_74 AC 43 ms
66,068 KB
testcase_75 WA -
testcase_76 AC 46 ms
68,648 KB
testcase_77 AC 64 ms
87,884 KB
testcase_78 AC 56 ms
78,836 KB
testcase_79 AC 43 ms
65,420 KB
testcase_80 WA -
testcase_81 AC 42 ms
62,028 KB
testcase_82 WA -
testcase_83 WA -
testcase_84 WA -
testcase_85 WA -
testcase_86 AC 75 ms
99,692 KB
testcase_87 WA -
testcase_88 AC 77 ms
99,692 KB
testcase_89 WA -
testcase_90 AC 77 ms
99,692 KB
testcase_91 AC 76 ms
99,692 KB
testcase_92 AC 77 ms
99,692 KB
testcase_93 AC 37 ms
53,280 KB
testcase_94 AC 36 ms
53,280 KB
testcase_95 AC 60 ms
82,712 KB
testcase_96 WA -
testcase_97 WA -
testcase_98 AC 63 ms
88,524 KB
testcase_99 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = set(list(map(int, input().split())))
print("First") if len(S) % 2 else print("Second")
0