結果

問題 No.761 平均値ゲーム
ユーザー rlangevinrlangevin
提出日時 2023-10-20 08:19:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 107 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 99,712 KB
最終ジャッジ日時 2024-09-20 03:48:58
合計ジャッジ時間 9,966 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 36 ms
51,584 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 WA -
testcase_07 AC 36 ms
51,584 KB
testcase_08 AC 36 ms
51,940 KB
testcase_09 WA -
testcase_10 AC 37 ms
51,584 KB
testcase_11 WA -
testcase_12 AC 36 ms
51,756 KB
testcase_13 AC 37 ms
52,096 KB
testcase_14 AC 36 ms
52,096 KB
testcase_15 AC 37 ms
51,840 KB
testcase_16 AC 37 ms
51,840 KB
testcase_17 AC 36 ms
51,712 KB
testcase_18 AC 37 ms
51,968 KB
testcase_19 AC 37 ms
51,840 KB
testcase_20 AC 37 ms
52,096 KB
testcase_21 AC 36 ms
51,712 KB
testcase_22 AC 37 ms
51,712 KB
testcase_23 AC 37 ms
51,840 KB
testcase_24 WA -
testcase_25 AC 37 ms
51,840 KB
testcase_26 AC 37 ms
51,456 KB
testcase_27 AC 37 ms
51,584 KB
testcase_28 AC 37 ms
51,584 KB
testcase_29 AC 37 ms
51,584 KB
testcase_30 AC 37 ms
51,840 KB
testcase_31 AC 36 ms
51,584 KB
testcase_32 AC 37 ms
52,096 KB
testcase_33 AC 66 ms
87,296 KB
testcase_34 AC 72 ms
94,336 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 72 ms
94,336 KB
testcase_41 AC 69 ms
91,136 KB
testcase_42 AC 72 ms
94,720 KB
testcase_43 AC 44 ms
63,872 KB
testcase_44 AC 59 ms
81,408 KB
testcase_45 WA -
testcase_46 AC 54 ms
75,264 KB
testcase_47 WA -
testcase_48 AC 40 ms
59,392 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 42 ms
60,288 KB
testcase_52 AC 44 ms
60,416 KB
testcase_53 AC 73 ms
94,592 KB
testcase_54 AC 59 ms
80,640 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 73 ms
94,848 KB
testcase_58 AC 44 ms
63,488 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 69 ms
91,136 KB
testcase_65 WA -
testcase_66 WA -
testcase_67 AC 49 ms
68,608 KB
testcase_68 AC 42 ms
61,568 KB
testcase_69 AC 67 ms
86,912 KB
testcase_70 AC 57 ms
78,208 KB
testcase_71 AC 46 ms
66,048 KB
testcase_72 AC 41 ms
61,312 KB
testcase_73 AC 54 ms
69,888 KB
testcase_74 AC 48 ms
65,280 KB
testcase_75 WA -
testcase_76 AC 48 ms
68,480 KB
testcase_77 AC 74 ms
87,296 KB
testcase_78 AC 57 ms
78,208 KB
testcase_79 AC 45 ms
64,384 KB
testcase_80 WA -
testcase_81 AC 42 ms
61,824 KB
testcase_82 WA -
testcase_83 WA -
testcase_84 WA -
testcase_85 WA -
testcase_86 AC 79 ms
99,328 KB
testcase_87 WA -
testcase_88 AC 76 ms
99,328 KB
testcase_89 WA -
testcase_90 AC 77 ms
99,200 KB
testcase_91 AC 80 ms
99,328 KB
testcase_92 AC 77 ms
99,200 KB
testcase_93 AC 37 ms
51,840 KB
testcase_94 AC 37 ms
51,712 KB
testcase_95 AC 64 ms
82,432 KB
testcase_96 WA -
testcase_97 WA -
testcase_98 AC 67 ms
87,680 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