結果

問題 No.240 ナイト散歩
ユーザー gorugo30gorugo30
提出日時 2021-03-17 23:18:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-11-15 18:08:15
合計ジャッジ時間 2,806 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,884 KB
testcase_01 AC 38 ms
54,064 KB
testcase_02 AC 39 ms
52,980 KB
testcase_03 AC 38 ms
52,872 KB
testcase_04 AC 38 ms
53,076 KB
testcase_05 AC 37 ms
52,596 KB
testcase_06 AC 38 ms
52,340 KB
testcase_07 AC 38 ms
52,824 KB
testcase_08 AC 38 ms
52,688 KB
testcase_09 AC 38 ms
52,624 KB
testcase_10 AC 38 ms
52,948 KB
testcase_11 AC 39 ms
53,280 KB
testcase_12 AC 38 ms
53,100 KB
testcase_13 AC 38 ms
52,244 KB
testcase_14 AC 38 ms
53,312 KB
testcase_15 AC 39 ms
52,900 KB
testcase_16 AC 38 ms
53,424 KB
testcase_17 AC 39 ms
53,072 KB
testcase_18 AC 38 ms
53,072 KB
testcase_19 AC 39 ms
54,288 KB
testcase_20 AC 39 ms
53,608 KB
testcase_21 AC 39 ms
54,320 KB
testcase_22 AC 38 ms
53,284 KB
testcase_23 AC 38 ms
52,616 KB
testcase_24 AC 37 ms
52,520 KB
testcase_25 AC 38 ms
53,216 KB
testcase_26 AC 37 ms
52,232 KB
testcase_27 AC 38 ms
53,172 KB
testcase_28 AC 38 ms
52,648 KB
testcase_29 AC 38 ms
52,776 KB
testcase_30 AC 38 ms
52,152 KB
testcase_31 AC 38 ms
52,088 KB
testcase_32 AC 38 ms
52,632 KB
testcase_33 AC 38 ms
52,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X, Y = map(int, input().split())
dx = [-2, -2, -1, -1, 1, 1, 2, 2]
dy = [-1, 1, -2, 2, -2, 2, -1, 1]
can = [set() for i in range(4)]
can[0].add((0, 0))
for i in range(1, 4):
    for x, y in can[i - 1]:
        for d in range(8):
            can[i].add((x + dx[d], y + dy[d]))

if (X, Y) in can[0] or (X, Y) in can[1] or (X, Y) in can[2] or (X, Y) in can[3]:
    print("YES")
else:
    print("NO")
0