結果

問題 No.240 ナイト散歩
ユーザー flippergoflippergo
提出日時 2020-12-28 16:37:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 55,912 KB
最終ジャッジ日時 2024-10-03 06:55:34
合計ジャッジ時間 2,788 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,868 KB
testcase_01 AC 44 ms
55,912 KB
testcase_02 AC 43 ms
55,496 KB
testcase_03 AC 43 ms
54,372 KB
testcase_04 AC 42 ms
55,300 KB
testcase_05 AC 43 ms
54,552 KB
testcase_06 AC 42 ms
55,792 KB
testcase_07 AC 42 ms
54,248 KB
testcase_08 AC 43 ms
54,388 KB
testcase_09 AC 44 ms
54,556 KB
testcase_10 AC 43 ms
53,976 KB
testcase_11 AC 43 ms
55,700 KB
testcase_12 AC 43 ms
55,336 KB
testcase_13 AC 42 ms
54,908 KB
testcase_14 AC 43 ms
54,728 KB
testcase_15 AC 43 ms
54,968 KB
testcase_16 AC 42 ms
55,164 KB
testcase_17 AC 42 ms
54,644 KB
testcase_18 AC 42 ms
55,124 KB
testcase_19 AC 43 ms
54,508 KB
testcase_20 AC 43 ms
54,680 KB
testcase_21 AC 43 ms
54,852 KB
testcase_22 AC 42 ms
55,660 KB
testcase_23 AC 42 ms
54,592 KB
testcase_24 AC 43 ms
55,392 KB
testcase_25 AC 43 ms
54,204 KB
testcase_26 AC 42 ms
55,576 KB
testcase_27 AC 41 ms
54,940 KB
testcase_28 AC 42 ms
55,248 KB
testcase_29 AC 43 ms
54,184 KB
testcase_30 AC 43 ms
54,068 KB
testcase_31 AC 43 ms
54,640 KB
testcase_32 AC 43 ms
53,876 KB
testcase_33 AC 43 ms
55,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
def step(x,y):
    A = [(x-2,y+1),(x-2,y-1),(x-1,y+2),(x-1,y-2),(x+1,y+2),(x+1,y-2),
    (x+2,y+1),(x+2,y-1)]
    return A
A = deque([(0,0,0)])
B = [(0,0)]
while A:
    x,y,cnt = A.popleft()
    if cnt<3:
        C = step(x,y)
        cnt += 1
        B += C
        for x1,y1 in C:
            A.append((x1,y1,cnt))
B = set(B)
X,Y = map(int,input().split())
if (X,Y) in B:
    print("YES")
else:
    print("NO")
0