結果

問題 No.2463 ストレートフラッシュ
ユーザー hiro1729hiro1729
提出日時 2023-09-09 07:48:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 78,772 KB
最終ジャッジ日時 2024-06-27 00:56:29
合計ジャッジ時間 6,330 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,552 KB
testcase_01 AC 41 ms
52,868 KB
testcase_02 AC 46 ms
53,816 KB
testcase_03 AC 53 ms
63,776 KB
testcase_04 AC 62 ms
66,484 KB
testcase_05 AC 62 ms
67,576 KB
testcase_06 AC 45 ms
54,548 KB
testcase_07 AC 54 ms
63,824 KB
testcase_08 AC 61 ms
65,728 KB
testcase_09 AC 72 ms
73,504 KB
testcase_10 AC 54 ms
65,344 KB
testcase_11 AC 40 ms
53,288 KB
testcase_12 AC 61 ms
67,084 KB
testcase_13 AC 239 ms
77,956 KB
testcase_14 AC 265 ms
78,132 KB
testcase_15 AC 257 ms
78,304 KB
testcase_16 AC 267 ms
78,300 KB
testcase_17 AC 301 ms
78,404 KB
testcase_18 AC 316 ms
78,480 KB
testcase_19 AC 325 ms
78,744 KB
testcase_20 AC 316 ms
78,404 KB
testcase_21 AC 275 ms
78,488 KB
testcase_22 AC 297 ms
78,740 KB
testcase_23 AC 306 ms
78,544 KB
testcase_24 AC 308 ms
78,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = [[0] * (n + 1) for _ in range(m)]
for i in range(n * m):
	s, t = map(int, input().split())
	s -= 1; t -= 1
	a[t][s] = max(i - 4, 0)
	if s == 0:
		a[t][n] = max(i - 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