結果

問題 No.761 平均値ゲーム
ユーザー matsu7874matsu7874
提出日時 2018-12-07 20:39:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 463 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,008 KB
最終ジャッジ日時 2024-09-14 03:35:53
合計ジャッジ時間 15,096 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 31 ms
10,624 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 WA -
testcase_25 AC 31 ms
10,752 KB
testcase_26 AC 31 ms
10,624 KB
testcase_27 AC 30 ms
10,624 KB
testcase_28 AC 30 ms
10,624 KB
testcase_29 WA -
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 30 ms
10,752 KB
testcase_33 AC 210 ms
18,700 KB
testcase_34 AC 239 ms
19,776 KB
testcase_35 AC 46 ms
11,520 KB
testcase_36 AC 142 ms
15,548 KB
testcase_37 AC 199 ms
18,336 KB
testcase_38 AC 197 ms
18,004 KB
testcase_39 AC 250 ms
20,144 KB
testcase_40 AC 244 ms
20,028 KB
testcase_41 AC 233 ms
19,804 KB
testcase_42 AC 255 ms
20,432 KB
testcase_43 AC 67 ms
12,404 KB
testcase_44 AC 168 ms
16,756 KB
testcase_45 AC 229 ms
19,300 KB
testcase_46 AC 133 ms
15,168 KB
testcase_47 AC 137 ms
15,412 KB
testcase_48 AC 41 ms
11,136 KB
testcase_49 AC 254 ms
20,940 KB
testcase_50 AC 55 ms
11,904 KB
testcase_51 AC 43 ms
11,392 KB
testcase_52 AC 46 ms
11,520 KB
testcase_53 AC 257 ms
20,544 KB
testcase_54 AC 156 ms
16,396 KB
testcase_55 AC 257 ms
20,460 KB
testcase_56 AC 92 ms
14,400 KB
testcase_57 AC 260 ms
20,540 KB
testcase_58 AC 64 ms
12,388 KB
testcase_59 AC 242 ms
19,788 KB
testcase_60 AC 91 ms
14,272 KB
testcase_61 AC 273 ms
21,152 KB
testcase_62 AC 259 ms
20,616 KB
testcase_63 AC 74 ms
13,360 KB
testcase_64 AC 233 ms
19,500 KB
testcase_65 AC 110 ms
14,684 KB
testcase_66 AC 46 ms
11,520 KB
testcase_67 AC 92 ms
14,404 KB
testcase_68 AC 52 ms
11,904 KB
testcase_69 AC 205 ms
18,340 KB
testcase_70 AC 142 ms
15,984 KB
testcase_71 AC 79 ms
13,392 KB
testcase_72 AC 50 ms
11,648 KB
testcase_73 AC 100 ms
14,676 KB
testcase_74 AC 74 ms
13,380 KB
testcase_75 AC 131 ms
15,116 KB
testcase_76 AC 92 ms
14,396 KB
testcase_77 AC 205 ms
18,420 KB
testcase_78 AC 144 ms
16,024 KB
testcase_79 AC 69 ms
13,124 KB
testcase_80 AC 60 ms
12,160 KB
testcase_81 AC 55 ms
11,904 KB
testcase_82 AC 170 ms
16,848 KB
testcase_83 AC 282 ms
21,548 KB
testcase_84 AC 285 ms
21,680 KB
testcase_85 AC 284 ms
21,552 KB
testcase_86 AC 285 ms
21,548 KB
testcase_87 AC 283 ms
21,676 KB
testcase_88 AC 280 ms
21,552 KB
testcase_89 AC 284 ms
21,552 KB
testcase_90 AC 282 ms
21,548 KB
testcase_91 AC 285 ms
21,676 KB
testcase_92 AC 284 ms
21,556 KB
testcase_93 AC 31 ms
10,752 KB
testcase_94 AC 30 ms
10,752 KB
testcase_95 AC 95 ms
21,552 KB
testcase_96 AC 102 ms
21,548 KB
testcase_97 AC 97 ms
22,008 KB
testcase_98 AC 164 ms
21,172 KB
testcase_99 AC 188 ms
21,552 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 l+1 == r or a[r-1] == a[l]:
        return True
    th = bisect.bisect_right(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