結果

問題 No.2463 ストレートフラッシュ
ユーザー sasa8uyauyasasa8uyauya
提出日時 2023-09-09 00:52:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 801 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,628 KB
最終ジャッジ日時 2024-06-26 18:04:01
合計ジャッジ時間 4,966 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 34 ms
52,352 KB
testcase_03 AC 44 ms
61,824 KB
testcase_04 AC 51 ms
65,408 KB
testcase_05 AC 54 ms
66,176 KB
testcase_06 AC 35 ms
52,480 KB
testcase_07 AC 47 ms
63,360 KB
testcase_08 AC 50 ms
64,768 KB
testcase_09 AC 61 ms
71,680 KB
testcase_10 AC 46 ms
63,360 KB
testcase_11 AC 38 ms
53,320 KB
testcase_12 AC 53 ms
66,176 KB
testcase_13 AC 201 ms
77,952 KB
testcase_14 AC 220 ms
78,208 KB
testcase_15 AC 213 ms
78,080 KB
testcase_16 AC 226 ms
77,932 KB
testcase_17 AC 254 ms
78,208 KB
testcase_18 AC 269 ms
78,472 KB
testcase_19 AC 262 ms
78,628 KB
testcase_20 AC 266 ms
78,356 KB
testcase_21 AC 240 ms
78,500 KB
testcase_22 AC 248 ms
78,580 KB
testcase_23 AC 246 ms
78,612 KB
testcase_24 AC 261 ms
78,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
c=[[0]*(n+1) for i in range(m)]
for i in range(n*m):
	s,t=map(int,input().split())
	s-=1
	t-=1
	c[t][s]=max(0,i-4)
	if s==0:
		c[t][n]=max(0,i-4)
a=n*m
for i in range(m):
	for j in range(n-3):
		g=c[i][j:j+5]
		g.sort()
		b=0
		bb=0
		for k in range(5):
			if g[k]<=bb:
				continue
			b+=(g[k]-bb+5-k-1)//(5-k)
			bb+=(g[k]-bb+5-k-1)//(5-k)*(5-k)
		a=min(a,b)
print(a)
0