結果

問題 No.5003 物理好きクリッカー
ユーザー ebicochinealebicochineal
提出日時 2018-12-01 01:31:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 486 ms / 10,000 ms
コード長 1,153 bytes
コンパイル時間 65 ms
実行使用メモリ 22,628 KB
スコア 45,783,313,954
平均クエリ数 10000.00
最終ジャッジ日時 2021-07-19 07:25:31
合計ジャッジ時間 18,139 ms
ジャッジサーバーID
(参考情報)
judge10 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 467 ms
22,532 KB
testcase_01 AC 464 ms
22,272 KB
testcase_02 AC 460 ms
22,540 KB
testcase_03 AC 484 ms
22,416 KB
testcase_04 AC 459 ms
22,272 KB
testcase_05 AC 474 ms
22,368 KB
testcase_06 AC 461 ms
22,588 KB
testcase_07 AC 472 ms
22,208 KB
testcase_08 AC 486 ms
22,444 KB
testcase_09 AC 469 ms
22,124 KB
testcase_10 AC 462 ms
22,520 KB
testcase_11 AC 468 ms
22,304 KB
testcase_12 AC 464 ms
22,212 KB
testcase_13 AC 484 ms
22,144 KB
testcase_14 AC 486 ms
22,468 KB
testcase_15 AC 460 ms
22,184 KB
testcase_16 AC 462 ms
22,368 KB
testcase_17 AC 466 ms
22,560 KB
testcase_18 AC 461 ms
22,624 KB
testcase_19 AC 463 ms
22,476 KB
testcase_20 AC 461 ms
22,464 KB
testcase_21 AC 461 ms
22,168 KB
testcase_22 AC 480 ms
22,344 KB
testcase_23 AC 462 ms
22,340 KB
testcase_24 AC 464 ms
22,448 KB
testcase_25 AC 464 ms
22,492 KB
testcase_26 AC 465 ms
22,308 KB
testcase_27 AC 471 ms
22,244 KB
testcase_28 AC 466 ms
21,988 KB
testcase_29 AC 466 ms
22,544 KB
testcase_30 AC 467 ms
22,240 KB
testcase_31 AC 468 ms
22,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#! /usr/bin/env python3

n = int(input())
s = input()
c = 0
a = {'hand':1, 'lily':10, 'factory':120, 'casino':2000, 'grimoire':25000}
base = {'hand':150, 'lily':2000, 'factory':30000, 'casino':600000, 'grimoire':10000000}
b = {'hand':150, 'lily':2000, 'factory':30000, 'casino':600000, 'grimoire':10000000}
d = {'hand':1, 'lily':0, 'factory':0, 'casino':0, 'grimoire':0}
r = {'hand':1, 'lily':1, 'factory':1, 'casino':1, 'grimoire':1}
for i in range(n):
    # print(c, d)
    f=0
    cmd = ''
    
    for k in b:
        if c > b[k]*10 and a[k] * 5 < d[k] <= a[k] * 10 and r[k]:
            cmd += 'reinforce ' + k
            c -= b[k]
            a[k] *= 2
            d[k] *= 2
            r[k] = 0
            break
    if cmd == '':
        for k in b:
            if c > b[k] and d[k] < a[k] * 10:
                cmd += 'buy ' + k
                c -= b[k]
                b[k] = int(1.2 * b[k])
                d[k] += a[k]
                break
    
    if cmd == '' :
        cmd = 'click'
        f=1
    print(cmd)
    for i, j in d.items():
        if i == 'hand' and f:
            c += j
        else:
            c += j
    s = input()
0