結果

問題 No.2463 ストレートフラッシュ
ユーザー ニックネームニックネーム
提出日時 2023-09-08 22:16:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 462 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,736 KB
最終ジャッジ日時 2024-06-26 15:22:33
合計ジャッジ時間 27,244 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 36 ms
10,752 KB
testcase_05 AC 37 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 36 ms
10,752 KB
testcase_09 AC 45 ms
10,752 KB
testcase_10 AC 33 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 37 ms
10,752 KB
testcase_13 AC 1,539 ms
17,408 KB
testcase_14 AC 1,889 ms
18,432 KB
testcase_15 AC 1,732 ms
18,048 KB
testcase_16 AC 1,877 ms
18,560 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

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