結果

問題 No.5003 物理好きクリッカー
ユーザー ebicochinealebicochineal
提出日時 2018-12-01 08:08:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 2,029 bytes
コンパイル時間 99 ms
実行使用メモリ 45,420 KB
スコア 0
最終ジャッジ日時 2021-07-19 07:33:11
合計ジャッジ時間 22,923 ms
ジャッジサーバーID
(参考情報)
judge10 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#! /usr/bin/env python3
import sys
n = int(input())
s = input()
c = 0
####################
base = {'hand':150, 'lily':2000, 'factory':30000, 'casino':600000, 'grimoire':10000000}
a = {'hand':1, 'lily':10, 'factory':120, 'casino':2000, 'grimoire':25000}
b = {'hand':150, 'lily':2000, 'factory':30000, 'casino':600000, 'grimoire':10000000}
cookie = {'hand':1, 'lily':0, 'factory':0, 'casino':0, 'grimoire':0}
r = {'hand':0, 'lily':1, 'factory':1, 'casino':1, 'grimoire':1}
buy = {'hand':1, 'lily':0, 'factory':0, 'casino':0, 'grimoire':0}
g = {'hand':12, 'lily':9, 'factory':9, 'casino':9, 'grimoire':9}

for i in range(n):
    tc = c
    # print(c, d, file=sys.stderr)
    f=0
    cmd = ''
    if cmd == '' and i >= n - 4 and buy['casino'] > 0:
        cmd = 'sell casino'
    if cmd == '' and i >= n - 2 and buy['grimoire'] > 0:
        cmd = 'sell grimoire'
    if cmd == '':
        for k in b:
            if k == 'hand' and c > (base[k] // 10) * (11 ** r[k]) and r[k]<3 and buy[k] > 0:
                cmd += 'enhclick'
                c -= (base[k] // 10) * (10 ** r[k])
                a[k] *= 2
                cookie[k] *= 2
                r[k] += 1
                break
            elif c > base[k] * (11 ** r[k]) and r[k]<2 and buy[k] > 5:
                cmd += 'reinforce ' + k
                c -= base[k] * (10 ** r[k])
                a[k] *= 2
                cookie[k] *= 2
                r[k] += 1
                break
    if cmd == '':
        for k in b:
            if c > b[k] and cookie[k] < a[k] * g[k]:
                cmd += 'buy ' + k
                c -= b[k]
                b[k] = int(1.2 * b[k])
                cookie[k] += a[k]
                buy[k] += 1
                break
    
    if cmd == '' :
        cmd = 'click'
        f=1
    else:
        print(i, tc, c, cookie, file=sys.stderr)
        f=0

    for i, j in cookie.items():
        if i == 'hand' and f:
            c += j
        else:
            c += j
    s = input()####################

print(c, cookie, file=sys.stderr)
0