結果

問題 No.761 平均値ゲーム
ユーザー matsu7874matsu7874
提出日時 2018-12-07 20:48:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,140 KB
最終ジャッジ日時 2024-09-14 03:36:12
合計ジャッジ時間 14,804 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 AC 31 ms
10,624 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 29 ms
10,624 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 30 ms
10,752 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 31 ms
10,752 KB
testcase_33 AC 213 ms
18,572 KB
testcase_34 AC 244 ms
20,164 KB
testcase_35 AC 47 ms
11,648 KB
testcase_36 AC 143 ms
15,548 KB
testcase_37 AC 203 ms
18,340 KB
testcase_38 AC 200 ms
18,000 KB
testcase_39 AC 254 ms
20,272 KB
testcase_40 AC 256 ms
20,024 KB
testcase_41 AC 234 ms
19,928 KB
testcase_42 AC 261 ms
20,852 KB
testcase_43 AC 66 ms
12,528 KB
testcase_44 AC 170 ms
16,880 KB
testcase_45 AC 235 ms
19,300 KB
testcase_46 AC 138 ms
15,164 KB
testcase_47 AC 138 ms
15,416 KB
testcase_48 AC 42 ms
11,264 KB
testcase_49 AC 261 ms
20,856 KB
testcase_50 AC 56 ms
12,032 KB
testcase_51 AC 43 ms
11,520 KB
testcase_52 AC 47 ms
11,648 KB
testcase_53 AC 264 ms
20,544 KB
testcase_54 AC 158 ms
16,328 KB
testcase_55 AC 261 ms
20,584 KB
testcase_56 AC 93 ms
14,272 KB
testcase_57 AC 266 ms
20,664 KB
testcase_58 AC 64 ms
12,384 KB
testcase_59 AC 248 ms
19,908 KB
testcase_60 AC 92 ms
14,392 KB
testcase_61 AC 277 ms
21,276 KB
testcase_62 AC 262 ms
20,488 KB
testcase_63 AC 74 ms
13,424 KB
testcase_64 AC 235 ms
19,416 KB
testcase_65 AC 112 ms
14,684 KB
testcase_66 AC 45 ms
11,520 KB
testcase_67 AC 94 ms
14,524 KB
testcase_68 AC 53 ms
11,904 KB
testcase_69 AC 209 ms
18,340 KB
testcase_70 AC 145 ms
15,864 KB
testcase_71 AC 81 ms
13,516 KB
testcase_72 AC 51 ms
11,776 KB
testcase_73 AC 103 ms
14,676 KB
testcase_74 AC 75 ms
13,376 KB
testcase_75 AC 133 ms
15,244 KB
testcase_76 AC 93 ms
14,392 KB
testcase_77 AC 211 ms
18,428 KB
testcase_78 AC 147 ms
16,160 KB
testcase_79 AC 70 ms
13,256 KB
testcase_80 AC 61 ms
12,416 KB
testcase_81 AC 55 ms
11,904 KB
testcase_82 AC 174 ms
16,976 KB
testcase_83 AC 291 ms
21,556 KB
testcase_84 AC 289 ms
21,548 KB
testcase_85 AC 290 ms
21,556 KB
testcase_86 AC 289 ms
21,676 KB
testcase_87 AC 288 ms
21,552 KB
testcase_88 AC 288 ms
21,676 KB
testcase_89 AC 291 ms
21,680 KB
testcase_90 AC 291 ms
21,556 KB
testcase_91 AC 291 ms
21,680 KB
testcase_92 AC 291 ms
21,548 KB
testcase_93 AC 31 ms
10,752 KB
testcase_94 AC 31 ms
10,752 KB
testcase_95 AC 98 ms
21,552 KB
testcase_96 AC 102 ms
21,552 KB
testcase_97 AC 97 ms
22,140 KB
testcase_98 AC 164 ms
21,200 KB
testcase_99 AC 188 ms
22,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

n = int(input())
a = list(map(int, input().split()))

b = [0] + a[:]
for i in range(n):
    b[i+1] += b[i]


def get_ave(l, r):
    return (b[r]-b[l])/(r-l)


def does_first_win(l, r):
    if a[r-1] == a[l]:
        return True
    th = bisect.bisect_left(a, get_ave(l, r))
    l_hand = not does_first_win(l, th)
    r_hand = not does_first_win(th, r)
    return l_hand or r_hand


print('First' if does_first_win(0, n) else 'Second')
0