結果

問題 No.240 ナイト散歩
ユーザー ntudantuda
提出日時 2023-12-28 21:17:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 54,136 KB
最終ジャッジ日時 2024-09-27 15:51:32
合計ジャッジ時間 2,937 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,128 KB
testcase_01 AC 41 ms
52,292 KB
testcase_02 AC 38 ms
52,192 KB
testcase_03 AC 37 ms
53,240 KB
testcase_04 AC 39 ms
52,292 KB
testcase_05 AC 38 ms
52,600 KB
testcase_06 AC 38 ms
52,876 KB
testcase_07 AC 39 ms
52,672 KB
testcase_08 AC 39 ms
52,532 KB
testcase_09 AC 38 ms
53,144 KB
testcase_10 AC 38 ms
52,840 KB
testcase_11 AC 39 ms
52,024 KB
testcase_12 AC 38 ms
53,688 KB
testcase_13 AC 38 ms
52,444 KB
testcase_14 AC 38 ms
52,400 KB
testcase_15 AC 38 ms
52,952 KB
testcase_16 AC 38 ms
52,960 KB
testcase_17 AC 38 ms
52,360 KB
testcase_18 AC 38 ms
52,836 KB
testcase_19 AC 39 ms
52,884 KB
testcase_20 AC 38 ms
52,252 KB
testcase_21 AC 38 ms
53,480 KB
testcase_22 AC 39 ms
54,136 KB
testcase_23 AC 38 ms
52,944 KB
testcase_24 AC 39 ms
53,200 KB
testcase_25 AC 39 ms
52,472 KB
testcase_26 AC 37 ms
52,700 KB
testcase_27 AC 38 ms
52,068 KB
testcase_28 AC 38 ms
52,696 KB
testcase_29 AC 39 ms
53,192 KB
testcase_30 AC 38 ms
52,824 KB
testcase_31 AC 38 ms
52,620 KB
testcase_32 AC 38 ms
52,324 KB
testcase_33 AC 38 ms
53,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = {(0,0)}
D = [(2,1),(1,2),(-1,2),(-2,1),(-2,-1),(-1,-2),(1,-2),(2,-1)]

for i in range(3):
    for x,y in list(S):
        for dx,dy in D:
            S.add((x+dx,y+dy))

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