結果

問題 No.240 ナイト散歩
ユーザー syunsukesyunsuke
提出日時 2020-09-18 21:16:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 56,556 KB
最終ジャッジ日時 2024-06-22 08:18:23
合計ジャッジ時間 2,804 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,780 KB
testcase_01 AC 45 ms
55,244 KB
testcase_02 AC 43 ms
55,884 KB
testcase_03 AC 44 ms
54,984 KB
testcase_04 AC 43 ms
55,036 KB
testcase_05 AC 43 ms
55,620 KB
testcase_06 AC 43 ms
54,780 KB
testcase_07 AC 44 ms
54,980 KB
testcase_08 AC 42 ms
55,292 KB
testcase_09 AC 42 ms
55,184 KB
testcase_10 AC 42 ms
54,688 KB
testcase_11 AC 42 ms
55,784 KB
testcase_12 AC 43 ms
56,556 KB
testcase_13 AC 43 ms
54,772 KB
testcase_14 AC 43 ms
55,936 KB
testcase_15 AC 44 ms
54,984 KB
testcase_16 AC 43 ms
54,980 KB
testcase_17 AC 43 ms
54,316 KB
testcase_18 AC 42 ms
55,484 KB
testcase_19 AC 41 ms
54,460 KB
testcase_20 AC 42 ms
54,864 KB
testcase_21 AC 44 ms
55,584 KB
testcase_22 AC 42 ms
55,512 KB
testcase_23 AC 43 ms
55,180 KB
testcase_24 AC 43 ms
54,784 KB
testcase_25 AC 42 ms
55,508 KB
testcase_26 AC 42 ms
55,948 KB
testcase_27 AC 44 ms
55,312 KB
testcase_28 AC 43 ms
56,432 KB
testcase_29 AC 44 ms
55,588 KB
testcase_30 AC 45 ms
55,448 KB
testcase_31 AC 45 ms
54,808 KB
testcase_32 AC 42 ms
54,500 KB
testcase_33 AC 43 ms
55,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D={}
D[(0,0)]=1

d={}
X=[0,1,1,-1,-1,2,2,-2,-2]
Y=[0,2,-2,2,-2,1,-1,1,-1]

import copy

for i in range(3):
    for k,v in D.items():
        k0,k1=k
        for xy in range(9):
            d[(k0+X[xy],k1+Y[xy])]=1
    D=copy.deepcopy(d)
    d={}
#print(len(D))

X,Y=map(int,input().split())
if (X,Y) in D:
    print("YES")
else:
    print("NO")
        
0