結果

問題 No.761 平均値ゲーム
ユーザー cielciel
提出日時 2019-04-20 14:50:42
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 179 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 23,808 KB
最終ジャッジ日時 2024-10-01 08:34:27
合計ジャッジ時間 15,314 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 90 ms
12,032 KB
testcase_03 WA -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 87 ms
12,288 KB
testcase_07 RE -
testcase_08 WA -
testcase_09 RE -
testcase_10 AC 95 ms
12,032 KB
testcase_11 AC 88 ms
12,160 KB
testcase_12 AC 86 ms
12,160 KB
testcase_13 AC 90 ms
12,160 KB
testcase_14 AC 81 ms
12,160 KB
testcase_15 RE -
testcase_16 AC 81 ms
11,904 KB
testcase_17 AC 80 ms
12,032 KB
testcase_18 RE -
testcase_19 AC 86 ms
12,032 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 90 ms
12,032 KB
testcase_23 AC 88 ms
12,032 KB
testcase_24 RE -
testcase_25 AC 85 ms
12,160 KB
testcase_26 AC 86 ms
12,160 KB
testcase_27 AC 84 ms
12,160 KB
testcase_28 RE -
testcase_29 AC 81 ms
12,032 KB
testcase_30 AC 80 ms
12,032 KB
testcase_31 RE -
testcase_32 AC 86 ms
12,032 KB
testcase_33 AC 143 ms
18,176 KB
testcase_34 AC 156 ms
19,328 KB
testcase_35 AC 91 ms
12,544 KB
testcase_36 AC 124 ms
16,256 KB
testcase_37 AC 140 ms
17,792 KB
testcase_38 AC 140 ms
17,920 KB
testcase_39 AC 145 ms
20,224 KB
testcase_40 AC 146 ms
20,352 KB
testcase_41 AC 140 ms
18,944 KB
testcase_42 AC 147 ms
20,480 KB
testcase_43 AC 100 ms
13,056 KB
testcase_44 AC 129 ms
17,152 KB
testcase_45 AC 146 ms
18,816 KB
testcase_46 AC 116 ms
15,744 KB
testcase_47 AC 130 ms
16,256 KB
testcase_48 AC 91 ms
12,288 KB
testcase_49 AC 149 ms
20,608 KB
testcase_50 AC 94 ms
12,544 KB
testcase_51 AC 90 ms
12,288 KB
testcase_52 AC 86 ms
12,416 KB
testcase_53 AC 148 ms
20,480 KB
testcase_54 AC 115 ms
16,768 KB
testcase_55 AC 174 ms
20,352 KB
testcase_56 AC 104 ms
14,080 KB
testcase_57 AC 153 ms
20,736 KB
testcase_58 AC 94 ms
13,056 KB
testcase_59 AC 151 ms
19,328 KB
testcase_60 AC 107 ms
13,952 KB
testcase_61 AC 158 ms
20,992 KB
testcase_62 AC 145 ms
20,480 KB
testcase_63 AC 98 ms
13,568 KB
testcase_64 AC 148 ms
18,688 KB
testcase_65 AC 108 ms
14,720 KB
testcase_66 AC 88 ms
12,416 KB
testcase_67 AC 102 ms
14,080 KB
testcase_68 AC 95 ms
12,672 KB
testcase_69 AC 138 ms
17,920 KB
testcase_70 AC 123 ms
16,128 KB
testcase_71 AC 104 ms
13,440 KB
testcase_72 AC 91 ms
12,672 KB
testcase_73 AC 107 ms
14,208 KB
testcase_74 AC 96 ms
13,440 KB
testcase_75 AC 118 ms
15,616 KB
testcase_76 AC 105 ms
14,208 KB
testcase_77 AC 137 ms
18,048 KB
testcase_78 AC 123 ms
16,256 KB
testcase_79 AC 98 ms
13,184 KB
testcase_80 AC 97 ms
12,800 KB
testcase_81 AC 96 ms
12,544 KB
testcase_82 AC 126 ms
17,024 KB
testcase_83 AC 161 ms
21,248 KB
testcase_84 AC 153 ms
21,504 KB
testcase_85 AC 153 ms
21,376 KB
testcase_86 AC 155 ms
21,248 KB
testcase_87 AC 150 ms
21,376 KB
testcase_88 AC 153 ms
21,248 KB
testcase_89 AC 160 ms
21,504 KB
testcase_90 AC 151 ms
21,504 KB
testcase_91 AC 163 ms
21,504 KB
testcase_92 AC 152 ms
21,248 KB
testcase_93 AC 82 ms
12,160 KB
testcase_94 RE -
testcase_95 AC 145 ms
21,248 KB
testcase_96 AC 161 ms
21,504 KB
testcase_97 AC 162 ms
21,376 KB
testcase_98 RE -
testcase_99 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,*a=`dd`.split.map &:to_i
*s=0
n.times{|i|s<<s[i]+a[i]}
f=->l,r{
	a[l]==a[r-1] || !f[l,(t=a.bsearch_index{|e|e>(s[r]-s[l]+r-l-1)/(r-l)})] || !f[t,r]
}
puts f[0,n]?:First: :Second
0