結果

問題 No.2463 ストレートフラッシュ
ユーザー ニックネームニックネーム
提出日時 2023-09-08 22:17:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,680 KB
実行使用メモリ 78,840 KB
最終ジャッジ日時 2024-06-26 15:23:06
合計ジャッジ時間 4,995 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,492 KB
testcase_01 AC 34 ms
53,120 KB
testcase_02 AC 32 ms
53,784 KB
testcase_03 AC 43 ms
62,684 KB
testcase_04 AC 52 ms
67,384 KB
testcase_05 AC 57 ms
67,576 KB
testcase_06 AC 33 ms
53,672 KB
testcase_07 AC 44 ms
64,372 KB
testcase_08 AC 50 ms
66,876 KB
testcase_09 AC 62 ms
73,320 KB
testcase_10 AC 45 ms
65,028 KB
testcase_11 AC 34 ms
54,020 KB
testcase_12 AC 52 ms
68,768 KB
testcase_13 AC 196 ms
78,232 KB
testcase_14 AC 213 ms
78,268 KB
testcase_15 AC 210 ms
78,364 KB
testcase_16 AC 223 ms
78,024 KB
testcase_17 AC 244 ms
78,644 KB
testcase_18 AC 258 ms
78,840 KB
testcase_19 AC 258 ms
78,700 KB
testcase_20 AC 265 ms
78,592 KB
testcase_21 AC 232 ms
78,548 KB
testcase_22 AC 249 ms
78,664 KB
testcase_23 AC 255 ms
78,768 KB
testcase_24 AC 255 ms
78,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = [[0]*(n+1) for _ in range(m)]
for t in range(n*m):
    j,i = map(int,input().split())
    a[i-1][j-1] = max(t-4,0)
    if j==1: a[i-1][n] = max(t-4,0)
ans = n*m
for i in range(m):
    for j in range(n-3):
        b = sorted(a[i][j:j+5])
        t = x = 0
        for k,v in enumerate(b):
            if v<=x: continue
            t += (v-x+4-k)//(5-k)
            x += (v-x+4-k)//(5-k)*(5-k)
        ans = min(ans,t)
print(ans)
0