結果

問題 No.933 おまわりさんこいつです
ユーザー horiesinitihoriesiniti
提出日時 2023-02-16 21:26:19
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 304 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 52,476 KB
最終ジャッジ日時 2024-07-18 20:53:28
合計ジャッジ時間 7,498 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
17,536 KB
testcase_01 AC 78 ms
12,160 KB
testcase_02 AC 78 ms
12,160 KB
testcase_03 AC 79 ms
12,032 KB
testcase_04 AC 74 ms
12,032 KB
testcase_05 AC 72 ms
12,160 KB
testcase_06 AC 76 ms
12,160 KB
testcase_07 AC 77 ms
12,160 KB
testcase_08 AC 75 ms
12,160 KB
testcase_09 AC 73 ms
12,032 KB
testcase_10 AC 72 ms
12,160 KB
testcase_11 AC 75 ms
12,160 KB
testcase_12 AC 76 ms
12,160 KB
testcase_13 AC 92 ms
14,336 KB
testcase_14 AC 95 ms
14,976 KB
testcase_15 AC 121 ms
17,280 KB
testcase_16 AC 358 ms
26,852 KB
testcase_17 AC 180 ms
33,144 KB
testcase_18 AC 74 ms
12,160 KB
testcase_19 AC 258 ms
52,476 KB
testcase_20 AC 177 ms
24,448 KB
testcase_21 AC 83 ms
12,288 KB
testcase_22 AC 83 ms
12,032 KB
testcase_23 TLE -
testcase_24 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:15: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

def f(xs,l,r)
	if (r-l<1000) then
		ans=1
		l.upto(r){|i|
			ans*=xs[i]
		}
		return ans
	else
		m=(l+r)/2
		ans=f(xs,l,m)
		ans*=f(xs,m+1,r)
		return ans
	end
end
n=gets.to_i
xs=gets.split(" ").map{|e| e.to_i}
ans=f(xs,0,xs.size-1)
while ans>9 do
	ans=ans.to_s.split("").map{|e| e.to_i}.sum
end
puts ans
0