結果

問題 No.2463 ストレートフラッシュ
ユーザー sasa8uyauyasasa8uyauya
提出日時 2023-09-09 00:10:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 337 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 79,104 KB
最終ジャッジ日時 2024-06-26 17:38:34
合計ジャッジ時間 5,492 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 52 ms
61,568 KB
testcase_04 AC 62 ms
65,024 KB
testcase_05 AC 64 ms
65,792 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 55 ms
62,336 KB
testcase_08 AC 60 ms
63,744 KB
testcase_09 AC 78 ms
71,168 KB
testcase_10 AC 55 ms
62,720 KB
testcase_11 AC 43 ms
52,864 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 241 ms
77,696 KB
testcase_15 AC 231 ms
78,208 KB
testcase_16 AC 244 ms
77,824 KB
testcase_17 AC 272 ms
78,208 KB
testcase_18 AC 281 ms
78,208 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 245 ms
78,464 KB
testcase_22 WA -
testcase_23 AC 272 ms
78,336 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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=[-1]+c[i][j:j+5]
		g.sort()
		b=0
		for k in range(5):
			b+=(g[k+1]-g[k]-1+5-k-1)//(5-k)
		a=min(a,b)
print(a)
0