結果

問題 No.2701 A cans -> B cans
ユーザー katonyonkokatonyonko
提出日時 2024-03-29 22:53:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,348 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,960 KB
最終ジャッジ日時 2024-09-30 16:40:40
合計ジャッジ時間 44,745 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,784 KB
testcase_01 AC 40 ms
54,656 KB
testcase_02 AC 41 ms
54,656 KB
testcase_03 AC 41 ms
54,400 KB
testcase_04 AC 42 ms
54,656 KB
testcase_05 AC 41 ms
54,656 KB
testcase_06 AC 56 ms
65,920 KB
testcase_07 AC 55 ms
66,432 KB
testcase_08 AC 56 ms
66,304 KB
testcase_09 AC 57 ms
66,560 KB
testcase_10 AC 56 ms
66,304 KB
testcase_11 AC 55 ms
66,176 KB
testcase_12 AC 55 ms
66,560 KB
testcase_13 AC 55 ms
65,920 KB
testcase_14 AC 54 ms
66,304 KB
testcase_15 AC 56 ms
66,048 KB
testcase_16 AC 58 ms
66,304 KB
testcase_17 AC 57 ms
65,920 KB
testcase_18 AC 55 ms
66,048 KB
testcase_19 AC 55 ms
66,560 KB
testcase_20 AC 55 ms
65,920 KB
testcase_21 AC 56 ms
65,920 KB
testcase_22 AC 55 ms
66,048 KB
testcase_23 AC 57 ms
66,304 KB
testcase_24 AC 56 ms
66,432 KB
testcase_25 AC 56 ms
65,920 KB
testcase_26 TLE -
testcase_27 AC 996 ms
74,468 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 906 ms
77,960 KB
testcase_31 AC 908 ms
77,444 KB
testcase_32 AC 921 ms
77,752 KB
testcase_33 AC 900 ms
77,804 KB
testcase_34 AC 923 ms
77,624 KB
testcase_35 AC 935 ms
77,236 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 940 ms
77,336 KB
testcase_40 AC 982 ms
77,320 KB
testcase_41 AC 873 ms
77,832 KB
testcase_42 WA -
testcase_43 AC 844 ms
77,296 KB
testcase_44 AC 849 ms
77,844 KB
testcase_45 WA -
testcase_46 AC 882 ms
77,268 KB
testcase_47 AC 817 ms
77,360 KB
testcase_48 AC 907 ms
77,928 KB
testcase_49 WA -
testcase_50 TLE -
testcase_51 WA -
testcase_52 TLE -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 TLE -
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 926 ms
77,236 KB
testcase_70 AC 925 ms
77,960 KB
testcase_71 AC 902 ms
77,832 KB
testcase_72 AC 963 ms
77,664 KB
testcase_73 AC 872 ms
77,820 KB
testcase_74 AC 989 ms
77,344 KB
testcase_75 AC 915 ms
77,444 KB
testcase_76 AC 957 ms
77,876 KB
testcase_77 AC 882 ms
77,724 KB
testcase_78 AC 918 ms
77,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import io
import sys
from collections import defaultdict, deque, Counter
from itertools import permutations, combinations, accumulate
from heapq import heappush, heappop
from bisect import bisect_right, bisect_left
from math import gcd
import math

_INPUT = """\
6
2 5
4 3 3
5 2 8
1 2
2 1 1000000000
3 10
9 8 1
5 1 8
5 2 4
"""

def input():
  return sys.stdin.readline()[:-1]

def solve(test):
  N,M=map(int, input().split())
  J=[list(map(int, input().split())) for _ in range(N)]
  for i in range(M):
    ans=0
    for j in range(N):
      a,b,c=J[j]
      ans=max(ans, ((i+1-a)//(a-b)+1)*b*c)
    print(ans)

def random_input():
  from random import randint,shuffle
  N=randint(1,10)
  M=randint(1,N)
  A=list(range(1,M+1))+[randint(1,M) for _ in range(N-M)]
  shuffle(A)
  return (" ".join(map(str, [N,M]))+"\n"+" ".join(map(str, A))+"\n")*3

def simple_solve():
  return []

def main(test):
  if test==0:
    solve(0)
  elif test==1:
    sys.stdin = io.StringIO(_INPUT)
    case_no=int(input())
    for _ in range(case_no):
      solve(0)
  else:
    for i in range(1000):
      sys.stdin = io.StringIO(random_input())
      x=solve(1)
      y=simple_solve()
      if x!=y:
        print(i,x,y)
        print(*[line for line in sys.stdin],sep='')
        break

#0:提出用、1:与えられたテスト用、2:ストレステスト用
main(0)
0