結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 361 ms
25,572 KB
testcase_01 AC 343 ms
25,916 KB
testcase_02 AC 354 ms
26,052 KB
testcase_03 AC 339 ms
25,968 KB
testcase_04 AC 343 ms
26,040 KB
testcase_05 AC 358 ms
25,928 KB
testcase_06 AC 364 ms
26,024 KB
testcase_07 AC 367 ms
25,948 KB
testcase_08 AC 345 ms
25,484 KB
testcase_09 AC 334 ms
25,964 KB
testcase_10 AC 344 ms
25,956 KB
testcase_11 AC 341 ms
26,024 KB
testcase_12 AC 344 ms
25,712 KB
testcase_13 AC 343 ms
25,652 KB
testcase_14 AC 349 ms
25,728 KB
testcase_15 AC 347 ms
25,636 KB
testcase_16 AC 338 ms
25,652 KB
testcase_17 AC 343 ms
25,768 KB
testcase_18 AC 339 ms
25,624 KB
testcase_19 AC 344 ms
25,928 KB
testcase_20 AC 343 ms
25,888 KB
testcase_21 AC 334 ms
25,960 KB
testcase_22 AC 366 ms
26,024 KB
testcase_23 AC 359 ms
26,012 KB
testcase_24 AC 342 ms
25,820 KB
testcase_25 AC 344 ms
26,056 KB
testcase_26 AC 342 ms
25,972 KB
testcase_27 AC 360 ms
25,756 KB
testcase_28 AC 363 ms
25,720 KB
testcase_29 AC 333 ms
25,748 KB
testcase_30 AC 367 ms
25,724 KB
testcase_31 AC 341 ms
25,976 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:2: warning: assigned but unused variable - s
Main.rb:3: warning: assigned but unused variable - k
Syntax OK

ソースコード

diff #

n=gets.to_i
s=gets.chomp
k=[0,0,0,0,0]
t=[['hand',150,1],['lily',2000,10],['factory',30000,120],['casino',600000,2000],['grimoire',10000000,25000]]
r=0
z=0
idx=0
n.times{
    if idx<t.size && r>=t[idx][1]
        puts 'buy '+t[idx][0]
        r-=t[idx][1]
        z+=t[idx][2]
        idx+=1
    else
        puts 'click'
        r+=1
    end
    r+=z
    STDOUT.flush
    gets
}
0