結果
問題 | No.2463 ストレートフラッシュ |
ユーザー | miya145592 |
提出日時 | 2023-09-08 23:21:00 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,044 bytes |
コンパイル時間 | 412 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 103,936 KB |
最終ジャッジ日時 | 2024-06-26 16:45:13 |
合計ジャッジ時間 | 5,298 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
52,352 KB |
testcase_01 | AC | 38 ms
52,608 KB |
testcase_02 | AC | 34 ms
52,480 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
ソースコード
N, M = map(int, input().split()) NM = [list(map(int, input().split())) for _ in range(N*M)] dp = [[0 for _ in range(N+1)] for _ in range(M)] for i in range(5): n, m = NM[i] n-=1 m-=1 dp[m][n] = 1 if n==0: dp[m][N] = 1 cnt = 1 for i in range(5, N*M): n, m = NM[i] n-=1 m-=1 dp[m][n] = cnt+1 if n==0: dp[m][N] = cnt+1 cnt+=1 #print(dp) INF = N*M ans = INF for i in range(M): for j in range(N): S = [] flag = True for k in range(j, j+5): if 0<=k<=N: S.append(dp[i][k]) else: flag = False break if flag: S.sort() tmp = 0 st = 1 a = S.count(st) while S[-1]>st: tmp+=1 st+=(5-a) for idx in range(a, 5): if S[idx]>st: a = idx-1 break #print(S, tmp) ans = min(ans, tmp) print(ans)