結果

問題 No.761 平均値ゲーム
ユーザー ああいいああいい
提出日時 2022-01-09 19:11:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 97,920 KB
最終ジャッジ日時 2024-04-26 19:51:55
合計ジャッジ時間 16,113 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 40 ms
51,712 KB
testcase_10 AC 39 ms
51,584 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 41 ms
51,712 KB
testcase_14 AC 40 ms
51,968 KB
testcase_15 AC 39 ms
51,584 KB
testcase_16 AC 40 ms
51,712 KB
testcase_17 AC 40 ms
51,584 KB
testcase_18 AC 39 ms
51,840 KB
testcase_19 AC 41 ms
51,840 KB
testcase_20 AC 40 ms
52,096 KB
testcase_21 AC 40 ms
51,584 KB
testcase_22 AC 39 ms
51,584 KB
testcase_23 AC 40 ms
51,584 KB
testcase_24 AC 39 ms
51,712 KB
testcase_25 AC 39 ms
51,584 KB
testcase_26 AC 39 ms
51,840 KB
testcase_27 AC 40 ms
51,968 KB
testcase_28 AC 40 ms
51,840 KB
testcase_29 AC 39 ms
51,584 KB
testcase_30 AC 39 ms
51,584 KB
testcase_31 AC 40 ms
51,712 KB
testcase_32 AC 39 ms
52,096 KB
testcase_33 AC 171 ms
87,680 KB
testcase_34 AC 178 ms
91,136 KB
testcase_35 AC 109 ms
76,928 KB
testcase_36 AC 158 ms
83,584 KB
testcase_37 AC 168 ms
87,296 KB
testcase_38 AC 165 ms
87,296 KB
testcase_39 AC 190 ms
91,136 KB
testcase_40 AC 182 ms
91,136 KB
testcase_41 AC 178 ms
89,344 KB
testcase_42 AC 190 ms
91,264 KB
testcase_43 AC 130 ms
77,056 KB
testcase_44 AC 161 ms
85,120 KB
testcase_45 AC 186 ms
89,344 KB
testcase_46 AC 177 ms
82,432 KB
testcase_47 AC 164 ms
82,560 KB
testcase_48 AC 100 ms
76,160 KB
testcase_49 AC 188 ms
91,136 KB
testcase_50 AC 118 ms
77,056 KB
testcase_51 AC 120 ms
77,184 KB
testcase_52 AC 117 ms
76,544 KB
testcase_53 AC 193 ms
91,136 KB
testcase_54 AC 160 ms
84,352 KB
testcase_55 AC 189 ms
91,136 KB
testcase_56 AC 154 ms
79,616 KB
testcase_57 AC 185 ms
91,776 KB
testcase_58 AC 125 ms
77,312 KB
testcase_59 AC 199 ms
90,880 KB
testcase_60 AC 141 ms
79,360 KB
testcase_61 AC 192 ms
93,696 KB
testcase_62 AC 180 ms
91,520 KB
testcase_63 AC 135 ms
77,824 KB
testcase_64 AC 173 ms
89,728 KB
testcase_65 AC 169 ms
81,024 KB
testcase_66 AC 107 ms
76,928 KB
testcase_67 AC 145 ms
79,104 KB
testcase_68 AC 114 ms
76,288 KB
testcase_69 AC 178 ms
87,552 KB
testcase_70 AC 154 ms
83,328 KB
testcase_71 AC 137 ms
78,080 KB
testcase_72 AC 115 ms
76,800 KB
testcase_73 AC 158 ms
79,616 KB
testcase_74 AC 141 ms
77,696 KB
testcase_75 AC 156 ms
82,304 KB
testcase_76 AC 143 ms
79,104 KB
testcase_77 AC 186 ms
87,936 KB
testcase_78 AC 163 ms
83,328 KB
testcase_79 AC 145 ms
77,696 KB
testcase_80 AC 127 ms
76,800 KB
testcase_81 AC 116 ms
76,672 KB
testcase_82 AC 177 ms
84,864 KB
testcase_83 AC 193 ms
93,568 KB
testcase_84 AC 201 ms
93,440 KB
testcase_85 AC 195 ms
93,440 KB
testcase_86 AC 207 ms
93,652 KB
testcase_87 AC 203 ms
93,696 KB
testcase_88 AC 192 ms
93,824 KB
testcase_89 AC 190 ms
93,440 KB
testcase_90 AC 197 ms
93,504 KB
testcase_91 AC 190 ms
93,696 KB
testcase_92 AC 184 ms
93,568 KB
testcase_93 AC 39 ms
51,840 KB
testcase_94 AC 40 ms
51,712 KB
testcase_95 AC 71 ms
82,944 KB
testcase_96 AC 107 ms
92,800 KB
testcase_97 AC 71 ms
88,704 KB
testcase_98 AC 184 ms
97,920 KB
testcase_99 AC 184 ms
92,160 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