結果

問題 No.2843 Birthday Present Struggle
ユーザー 👑 p-adicp-adic
提出日時 2024-06-29 10:39:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 729 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-23 13:14:43
合計ジャッジ時間 3,305 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
11,008 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 WA -
testcase_04 AC 30 ms
11,008 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 30 ms
11,008 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 29 ms
11,136 KB
testcase_13 AC 30 ms
11,008 KB
testcase_14 AC 32 ms
10,880 KB
testcase_15 AC 31 ms
11,008 KB
testcase_16 AC 30 ms
10,880 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 AC 30 ms
11,008 KB
testcase_19 WA -
testcase_20 AC 30 ms
10,880 KB
testcase_21 AC 29 ms
11,008 KB
testcase_22 AC 31 ms
10,880 KB
testcase_23 AC 30 ms
11,008 KB
testcase_24 AC 31 ms
11,008 KB
testcase_25 AC 29 ms
11,136 KB
testcase_26 AC 31 ms
11,008 KB
testcase_27 AC 31 ms
10,880 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 30 ms
11,008 KB
testcase_30 AC 31 ms
11,008 KB
testcase_31 AC 30 ms
10,880 KB
testcase_32 AC 29 ms
11,008 KB
testcase_33 AC 30 ms
10,752 KB
testcase_34 AC 31 ms
10,880 KB
testcase_35 AC 31 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#誤解法3
I,R,O=input,range,print
N=int(I())
A=[list(map(int,I().split()))for i in R(3)]
x,y=A[2]
if x*2+1<=N:
	for i in R(1,x):
		if [i,y+1]in A[:2]or[i,y-1]in A[:2]:break
	else:
		O(x*2+1)
		for i in R(1,x+1):O(i,y+1);O(i,y-1)
		exit(O(x+1,y))
if (N-x+1)*2+1<=N:
	for i in R(x,N+1):
		if [i,y+1]in A[:2]or[i,y-1]in A[:2]:break
	else:
		O((N-x+1)*2+1)
		for i in R(x,N+1):O(i,y+1);O(i,y-1)
		exit(O(x-1,y))
if y*2+1<=N:
	for j in R(1,y):
		if [x+1,j]in A[:2]or[x-1,j]in A[:2]:break
	else:
		O(y*2+1)
		for j in R(1,y+1):O(x+1,j);O(x-1,j)
		exit(O(x,y+1))
if (N-y+1)*2+1<=N:
	for j in R(y,N+1):
		if [x+1,j]in A[:2]or[x-1,j]in A[:2]:break
	else:
		O((N-y+1)*2+1)
		for j in R(y,N+1):O(x+1,j);O(x-1,j)
		exit(O(x,y-1))
O("WA")
0