結果

問題 No.5018 Let's Make a Best-seller Book
ユーザー mymelochanmymelochan
提出日時 2023-10-01 13:34:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 830 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 87,332 KB
実行使用メモリ 92,124 KB
スコア 1,471
平均クエリ数 20.80
最終ジャッジ日時 2023-10-01 13:35:07
合計ジャッジ時間 8,756 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
92,104 KB
testcase_01 AC 103 ms
92,124 KB
testcase_02 AC 102 ms
91,512 KB
testcase_03 AC 103 ms
92,024 KB
testcase_04 AC 103 ms
91,792 KB
testcase_05 AC 102 ms
91,936 KB
testcase_06 AC 103 ms
92,024 KB
testcase_07 AC 106 ms
92,036 KB
testcase_08 AC 104 ms
91,332 KB
testcase_09 AC 105 ms
91,452 KB
testcase_10 AC 104 ms
91,644 KB
testcase_11 AC 127 ms
91,540 KB
testcase_12 AC 104 ms
91,340 KB
testcase_13 AC 105 ms
91,832 KB
testcase_14 AC 104 ms
91,772 KB
testcase_15 AC 115 ms
91,528 KB
testcase_16 AC 103 ms
91,884 KB
testcase_17 AC 105 ms
92,016 KB
testcase_18 AC 105 ms
91,868 KB
testcase_19 AC 132 ms
91,400 KB
testcase_20 AC 103 ms
91,388 KB
testcase_21 AC 104 ms
91,424 KB
testcase_22 AC 103 ms
91,880 KB
testcase_23 AC 104 ms
91,440 KB
testcase_24 AC 101 ms
91,636 KB
testcase_25 AC 101 ms
92,124 KB
testcase_26 AC 105 ms
91,736 KB
testcase_27 AC 113 ms
91,800 KB
testcase_28 AC 104 ms
91,924 KB
testcase_29 AC 103 ms
91,748 KB
testcase_30 AC 103 ms
91,928 KB
testcase_31 AC 105 ms
91,648 KB
testcase_32 AC 102 ms
91,744 KB
testcase_33 AC 101 ms
91,840 KB
testcase_34 AC 103 ms
91,624 KB
testcase_35 AC 101 ms
91,816 KB
testcase_36 AC 102 ms
91,468 KB
testcase_37 AC 102 ms
91,372 KB
testcase_38 AC 103 ms
91,484 KB
testcase_39 AC 113 ms
91,380 KB
testcase_40 TLE -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
testcase_92 -- -
testcase_93 -- -
testcase_94 -- -
testcase_95 -- -
testcase_96 -- -
testcase_97 -- -
testcase_98 -- -
testcase_99 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 最初の入力
T, N, money = map(int, input().split())
ADV = 500000

S = [0] * N
P = [0] * N
R = [0] * N

# インタラクティブ
for week in range(T):
    # (あ) 出版社の行動を出力する
    if False and week <= T//2 and money >= ADV*2.1:
        print("2",1,flush=True)
    else:
        for i in range(N):
            P[i] += 5

        P_sum = sum(P)
        L = []
        for i in range(N):
            if P[i] <= 0:
                L.append(0)
                continue

            ratio = P[i]/P_sum
            m = min(20-R[i],int(money*ratio)//10//500)
            L.append(m)

        print("1", *L, flush=True)

    # (い) 売上部数などを入力する
    money = int(input())
    S = list(map(int, input().split()))
    P = list(map(int, input().split()))
    R = list(map(int, input().split()))
0