結果

問題 No.2701 A cans -> B cans
ユーザー mkawa2mkawa2
提出日時 2024-11-05 01:03:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 996 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 77,256 KB
最終ジャッジ日時 2024-11-05 01:04:04
合計ジャッジ時間 14,098 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,972 KB
testcase_01 AC 36 ms
53,012 KB
testcase_02 AC 36 ms
53,444 KB
testcase_03 AC 37 ms
52,496 KB
testcase_04 AC 37 ms
52,696 KB
testcase_05 AC 36 ms
53,440 KB
testcase_06 AC 49 ms
64,536 KB
testcase_07 AC 49 ms
63,128 KB
testcase_08 AC 49 ms
63,508 KB
testcase_09 AC 50 ms
64,856 KB
testcase_10 AC 49 ms
64,212 KB
testcase_11 AC 49 ms
63,876 KB
testcase_12 AC 50 ms
64,120 KB
testcase_13 AC 52 ms
64,936 KB
testcase_14 AC 49 ms
64,408 KB
testcase_15 AC 49 ms
64,488 KB
testcase_16 AC 50 ms
63,684 KB
testcase_17 AC 51 ms
64,532 KB
testcase_18 AC 49 ms
63,384 KB
testcase_19 AC 50 ms
65,096 KB
testcase_20 AC 49 ms
64,816 KB
testcase_21 AC 49 ms
64,276 KB
testcase_22 AC 49 ms
64,484 KB
testcase_23 AC 49 ms
64,012 KB
testcase_24 AC 49 ms
63,604 KB
testcase_25 AC 49 ms
63,616 KB
testcase_26 AC 162 ms
74,260 KB
testcase_27 AC 166 ms
74,324 KB
testcase_28 AC 164 ms
74,988 KB
testcase_29 AC 175 ms
74,888 KB
testcase_30 AC 181 ms
76,640 KB
testcase_31 AC 183 ms
76,744 KB
testcase_32 AC 182 ms
76,764 KB
testcase_33 AC 179 ms
76,520 KB
testcase_34 AC 184 ms
76,780 KB
testcase_35 AC 177 ms
76,472 KB
testcase_36 AC 175 ms
74,892 KB
testcase_37 AC 172 ms
75,088 KB
testcase_38 AC 172 ms
74,924 KB
testcase_39 AC 179 ms
76,976 KB
testcase_40 AC 175 ms
74,756 KB
testcase_41 AC 178 ms
77,096 KB
testcase_42 WA -
testcase_43 AC 173 ms
74,936 KB
testcase_44 AC 184 ms
76,648 KB
testcase_45 WA -
testcase_46 AC 181 ms
76,876 KB
testcase_47 AC 175 ms
76,820 KB
testcase_48 AC 170 ms
74,832 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 AC 213 ms
76,840 KB
testcase_70 AC 213 ms
76,692 KB
testcase_71 AC 206 ms
76,684 KB
testcase_72 AC 275 ms
76,612 KB
testcase_73 AC 303 ms
76,688 KB
testcase_74 AC 271 ms
77,044 KB
testcase_75 AC 311 ms
76,632 KB
testcase_76 AC 204 ms
76,704 KB
testcase_77 AC 210 ms
76,892 KB
testcase_78 AC 210 ms
76,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

md = 10**9+7
# md = 998244353

n,m=LI()
dp=[0]*m
for _ in range(n):
    a,b,c=LI()
    d = 0
    e = 0
    for i in range(m):
        e+=1
        if e>=a:
            d+=b
            e+=b-a
        # print(d,e)
        dp[i]=max(dp[i],d*c)
print(*dp,sep="\n")
0