結果

問題 No.2463 ストレートフラッシュ
ユーザー ゼットゼット
提出日時 2023-09-08 21:54:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 593 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 123,084 KB
最終ジャッジ日時 2024-06-26 14:52:02
合計ジャッジ時間 7,335 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,084 KB
testcase_01 AC 34 ms
53,280 KB
testcase_02 AC 31 ms
52,828 KB
testcase_03 AC 50 ms
67,736 KB
testcase_04 AC 55 ms
69,880 KB
testcase_05 AC 55 ms
70,324 KB
testcase_06 AC 38 ms
54,168 KB
testcase_07 AC 52 ms
67,740 KB
testcase_08 AC 54 ms
69,156 KB
testcase_09 AC 57 ms
70,800 KB
testcase_10 AC 50 ms
67,092 KB
testcase_11 AC 33 ms
54,676 KB
testcase_12 AC 52 ms
68,476 KB
testcase_13 AC 348 ms
107,364 KB
testcase_14 AC 425 ms
113,092 KB
testcase_15 AC 404 ms
111,524 KB
testcase_16 AC 441 ms
113,352 KB
testcase_17 AC 516 ms
119,472 KB
testcase_18 AC 558 ms
122,740 KB
testcase_19 AC 567 ms
123,084 KB
testcase_20 AC 593 ms
122,508 KB
testcase_21 AC 412 ms
111,856 KB
testcase_22 AC 418 ms
122,876 KB
testcase_23 AC 438 ms
122,580 KB
testcase_24 AC 483 ms
122,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
v=[[[] for i in range(N+1)] for j in range(M+1)]
for i in range(N*M):
  n,m=map(int,input().split())
  l=n-4
  if l<=0:
    l=1
  for x in range(l,n+1):
    v[m][x].append(i+1)
  if n==1:
    v[m][N-3].append(i+1)
result=10**9
for i in range(1,M+1):
  for j in range(1,N-2):
    a,b,c,d,e=v[i][j][:]
    count=0
    x=0
    for k in range(5):
      a=v[i][j][k]
      if a<=x:
        continue
      e=(a-x+4-k)//(5-k)
      x+=e*(5-k)
      count+=e
    result=min(result,count-1)
print(result)
0