結果

問題 No.5003 物理好きクリッカー
ユーザー ebicochinealebicochineal
提出日時 2018-12-01 01:05:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 488 ms / 10,000 ms
コード長 727 bytes
コンパイル時間 217 ms
実行使用メモリ 22,608 KB
スコア 34,860,331,813
平均クエリ数 10000.00
最終ジャッジ日時 2021-07-19 07:25:24
合計ジャッジ時間 17,252 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 445 ms
22,544 KB
testcase_01 AC 448 ms
22,412 KB
testcase_02 AC 443 ms
22,300 KB
testcase_03 AC 446 ms
22,512 KB
testcase_04 AC 450 ms
22,068 KB
testcase_05 AC 455 ms
22,452 KB
testcase_06 AC 449 ms
22,064 KB
testcase_07 AC 488 ms
22,108 KB
testcase_08 AC 449 ms
22,500 KB
testcase_09 AC 446 ms
21,932 KB
testcase_10 AC 449 ms
22,436 KB
testcase_11 AC 446 ms
22,032 KB
testcase_12 AC 444 ms
22,200 KB
testcase_13 AC 453 ms
22,100 KB
testcase_14 AC 446 ms
22,456 KB
testcase_15 AC 452 ms
22,428 KB
testcase_16 AC 450 ms
22,396 KB
testcase_17 AC 445 ms
22,104 KB
testcase_18 AC 447 ms
22,252 KB
testcase_19 AC 446 ms
22,428 KB
testcase_20 AC 447 ms
22,176 KB
testcase_21 AC 446 ms
22,036 KB
testcase_22 AC 449 ms
22,068 KB
testcase_23 AC 444 ms
22,588 KB
testcase_24 AC 452 ms
22,348 KB
testcase_25 AC 452 ms
22,076 KB
testcase_26 AC 446 ms
22,496 KB
testcase_27 AC 445 ms
22,424 KB
testcase_28 AC 444 ms
22,356 KB
testcase_29 AC 448 ms
22,112 KB
testcase_30 AC 444 ms
22,412 KB
testcase_31 AC 445 ms
22,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#! /usr/bin/env python3

n = int(input())
s = input()
c = 0
a = {'hand':1, 'lily':10, 'factory':120, 'casino':2000, 'grimoire':25000}
b = {'hand':150, 'lily':2000, 'factory':30000, 'casino':600000, 'grimoire':10000000}
d = {'hand':1, 'lily':0, 'factory':0, 'casino':0, 'grimoire':0}

for i in range(n):
    # print(c, d)
    f=0
    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