結果

問題 No.5003 物理好きクリッカー
ユーザー cielciel
提出日時 2018-12-01 15:14:24
言語 Ruby
(3.3.0)
結果
AC  
実行時間 394 ms / 10,000 ms
コード長 1,078 bytes
コンパイル時間 168 ms
実行使用メモリ 26,168 KB
スコア 75,353,343,665
平均クエリ数 10000.00
最終ジャッジ日時 2021-07-19 07:41:16
合計ジャッジ時間 15,529 ms
ジャッジサーバーID
(参考情報)
judge12 / judge10
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 386 ms
26,012 KB
testcase_01 AC 387 ms
25,856 KB
testcase_02 AC 384 ms
25,964 KB
testcase_03 AC 385 ms
25,868 KB
testcase_04 AC 389 ms
25,744 KB
testcase_05 AC 387 ms
25,968 KB
testcase_06 AC 390 ms
25,576 KB
testcase_07 AC 386 ms
25,748 KB
testcase_08 AC 388 ms
25,928 KB
testcase_09 AC 382 ms
25,780 KB
testcase_10 AC 388 ms
25,680 KB
testcase_11 AC 387 ms
25,808 KB
testcase_12 AC 385 ms
26,028 KB
testcase_13 AC 387 ms
25,908 KB
testcase_14 AC 390 ms
26,024 KB
testcase_15 AC 385 ms
25,652 KB
testcase_16 AC 389 ms
25,852 KB
testcase_17 AC 389 ms
25,744 KB
testcase_18 AC 387 ms
26,028 KB
testcase_19 AC 384 ms
26,000 KB
testcase_20 AC 385 ms
25,836 KB
testcase_21 AC 386 ms
25,644 KB
testcase_22 AC 385 ms
25,744 KB
testcase_23 AC 389 ms
25,660 KB
testcase_24 AC 387 ms
25,960 KB
testcase_25 AC 390 ms
25,996 KB
testcase_26 AC 394 ms
25,852 KB
testcase_27 AC 386 ms
26,092 KB
testcase_28 AC 388 ms
25,696 KB
testcase_29 AC 387 ms
25,932 KB
testcase_30 AC 388 ms
25,724 KB
testcase_31 AC 386 ms
25,884 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:25: warning: mismatched indentations at 'elsif' with 'if' at 18
Main.rb:30: warning: mismatched indentations at 'else' with 'if' at 18
Main.rb:3: warning: assigned but unused variable - s
Main.rb:14: warning: assigned but unused variable - z
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
n=gets.to_i
s=gets.chomp ###
k=[0,0,0,0,0]
enh=[0,0,0,0,0]
t=[
	{:name=>'hand',:buyprice=>150,:enhprice=>1500,:reward=>1},
	{:name=>'lily',:buyprice=>2000,:enhprice=>20000,:reward=>10},
	{:name=>'factory',:buyprice=>30000,:enhprice=>300000,:reward=>120},
	{:name=>'casino',:buyprice=>600000,:enhprice=>6000000,:reward=>2000},
	{:name=>'grimoire',:buyprice=>10000000,:enhprice=>100000000,:reward=>25000},
]
r=0
z=0
idx=0
idxenh=0
n.times{
	if idxenh<t.size && r>=t[idxenh][:enhprice]
        puts 'reinforce '+t[idxenh][:name]
        r-=t[idxenh][:enhprice]
        t[idxenh][:enhprice]=10*t[idxenh][:enhprice]
        t[idxenh][:reward]=2*t[idxenh][:reward]
        enh[idxenh]+=1
        idxenh+=1 if enh[idxenh]>=1
    elsif idx<t.size && r>=t[idx][:buyprice]
        puts 'buy '+t[idx][:name]
        r-=t[idx][:buyprice];t[idx][:buyprice]=(6*t[idx][:buyprice]+5-1)/5
        k[idx]+=1
        idx+=1 if k[idx]>=10
    else
        puts 'click'
        r+=1
    end
    r+=t.zip(k).reduce(0){|s,(x,y)|s+x[:reward]*y}
    STDOUT.flush
    gets
}
STDERR.puts r
0