結果

問題 No.761 平均値ゲーム
ユーザー ああいいああいい
提出日時 2022-01-09 19:11:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 97,784 KB
最終ジャッジ日時 2024-11-14 10:28:54
合計ジャッジ時間 14,895 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,016 KB
testcase_01 AC 38 ms
52,140 KB
testcase_02 AC 39 ms
52,084 KB
testcase_03 AC 38 ms
53,352 KB
testcase_04 AC 40 ms
52,504 KB
testcase_05 AC 38 ms
52,304 KB
testcase_06 AC 37 ms
52,484 KB
testcase_07 AC 37 ms
52,776 KB
testcase_08 AC 38 ms
52,208 KB
testcase_09 AC 37 ms
52,316 KB
testcase_10 AC 37 ms
53,660 KB
testcase_11 AC 36 ms
53,212 KB
testcase_12 AC 38 ms
52,492 KB
testcase_13 AC 37 ms
52,252 KB
testcase_14 AC 38 ms
53,152 KB
testcase_15 AC 37 ms
52,876 KB
testcase_16 AC 36 ms
52,944 KB
testcase_17 AC 37 ms
52,600 KB
testcase_18 AC 38 ms
52,072 KB
testcase_19 AC 38 ms
52,264 KB
testcase_20 AC 37 ms
53,132 KB
testcase_21 AC 37 ms
52,832 KB
testcase_22 AC 37 ms
52,688 KB
testcase_23 AC 38 ms
52,736 KB
testcase_24 AC 37 ms
52,500 KB
testcase_25 AC 36 ms
53,216 KB
testcase_26 AC 36 ms
53,428 KB
testcase_27 AC 36 ms
53,152 KB
testcase_28 AC 37 ms
53,004 KB
testcase_29 AC 36 ms
53,016 KB
testcase_30 AC 37 ms
53,508 KB
testcase_31 AC 36 ms
53,076 KB
testcase_32 AC 37 ms
53,040 KB
testcase_33 AC 154 ms
88,036 KB
testcase_34 AC 166 ms
91,580 KB
testcase_35 AC 96 ms
77,040 KB
testcase_36 AC 143 ms
83,372 KB
testcase_37 AC 154 ms
87,784 KB
testcase_38 AC 150 ms
87,748 KB
testcase_39 AC 175 ms
91,716 KB
testcase_40 AC 170 ms
91,552 KB
testcase_41 AC 160 ms
89,720 KB
testcase_42 AC 178 ms
91,684 KB
testcase_43 AC 115 ms
77,240 KB
testcase_44 AC 145 ms
84,772 KB
testcase_45 AC 168 ms
89,716 KB
testcase_46 AC 162 ms
82,740 KB
testcase_47 AC 152 ms
82,432 KB
testcase_48 AC 89 ms
76,400 KB
testcase_49 AC 175 ms
91,980 KB
testcase_50 AC 109 ms
77,188 KB
testcase_51 AC 106 ms
77,512 KB
testcase_52 AC 104 ms
76,960 KB
testcase_53 AC 182 ms
91,568 KB
testcase_54 AC 149 ms
84,732 KB
testcase_55 AC 172 ms
91,624 KB
testcase_56 AC 142 ms
79,396 KB
testcase_57 AC 166 ms
92,024 KB
testcase_58 AC 115 ms
77,244 KB
testcase_59 AC 186 ms
91,248 KB
testcase_60 AC 131 ms
79,328 KB
testcase_61 AC 180 ms
93,932 KB
testcase_62 AC 174 ms
91,812 KB
testcase_63 AC 120 ms
78,556 KB
testcase_64 AC 160 ms
89,860 KB
testcase_65 AC 159 ms
81,092 KB
testcase_66 AC 96 ms
77,212 KB
testcase_67 AC 137 ms
79,480 KB
testcase_68 AC 98 ms
76,556 KB
testcase_69 AC 156 ms
88,472 KB
testcase_70 AC 145 ms
83,756 KB
testcase_71 AC 128 ms
78,672 KB
testcase_72 AC 101 ms
77,024 KB
testcase_73 AC 144 ms
80,228 KB
testcase_74 AC 125 ms
78,024 KB
testcase_75 AC 142 ms
82,628 KB
testcase_76 AC 129 ms
79,136 KB
testcase_77 AC 171 ms
88,348 KB
testcase_78 AC 153 ms
83,924 KB
testcase_79 AC 136 ms
77,812 KB
testcase_80 AC 112 ms
76,672 KB
testcase_81 AC 108 ms
77,256 KB
testcase_82 AC 164 ms
85,424 KB
testcase_83 AC 176 ms
94,036 KB
testcase_84 AC 190 ms
93,784 KB
testcase_85 AC 180 ms
93,604 KB
testcase_86 AC 193 ms
93,948 KB
testcase_87 AC 189 ms
93,740 KB
testcase_88 AC 182 ms
94,204 KB
testcase_89 AC 177 ms
94,252 KB
testcase_90 AC 182 ms
93,680 KB
testcase_91 AC 174 ms
94,124 KB
testcase_92 AC 175 ms
94,224 KB
testcase_93 AC 38 ms
53,212 KB
testcase_94 AC 38 ms
52,928 KB
testcase_95 AC 63 ms
83,520 KB
testcase_96 AC 95 ms
93,068 KB
testcase_97 AC 66 ms
89,580 KB
testcase_98 AC 173 ms
97,784 KB
testcase_99 AC 180 ms
92,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 8)

N = int(input())
A = list(map(int,input().split()))
Sum = sum(A)

def calc(l = A,s = Sum):
    m = s / len(l)
    if l[0] >= m:
        return True
    start = 0
    end = len(l)-1
    while end - start > 1:
        mid = (end + start) // 2
        if l[mid] < m:
            start = mid
        else:
            end = mid
    s0 = sum(l[:end])
    s1 = s - s0
    f0 = calc(l[:end],s0)
    f1 = calc(l[end:],s1)
    if f0 and f1:return False
    else:return True
print('First' if calc() else 'Second')
0