結果

問題 No.240 ナイト散歩
ユーザー rlangevinrlangevin
提出日時 2023-01-07 14:22:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-12-14 14:02:00
合計ジャッジ時間 2,894 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,344 KB
testcase_01 AC 39 ms
52,828 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 40 ms
53,068 KB
testcase_04 AC 39 ms
52,836 KB
testcase_05 AC 39 ms
52,304 KB
testcase_06 AC 41 ms
52,876 KB
testcase_07 AC 40 ms
53,380 KB
testcase_08 AC 40 ms
52,884 KB
testcase_09 AC 39 ms
52,520 KB
testcase_10 AC 39 ms
52,368 KB
testcase_11 AC 39 ms
53,132 KB
testcase_12 AC 38 ms
52,336 KB
testcase_13 AC 39 ms
53,812 KB
testcase_14 AC 39 ms
52,080 KB
testcase_15 AC 40 ms
51,936 KB
testcase_16 AC 37 ms
53,396 KB
testcase_17 AC 39 ms
52,444 KB
testcase_18 AC 39 ms
52,064 KB
testcase_19 AC 38 ms
52,252 KB
testcase_20 AC 39 ms
52,664 KB
testcase_21 AC 37 ms
53,364 KB
testcase_22 AC 37 ms
53,632 KB
testcase_23 AC 37 ms
53,884 KB
testcase_24 AC 40 ms
53,352 KB
testcase_25 AC 37 ms
54,096 KB
testcase_26 AC 39 ms
53,968 KB
testcase_27 AC 39 ms
53,080 KB
testcase_28 AC 38 ms
52,820 KB
testcase_29 AC 39 ms
52,188 KB
testcase_30 AC 39 ms
53,220 KB
testcase_31 AC 39 ms
52,352 KB
testcase_32 AC 39 ms
54,348 KB
testcase_33 AC 38 ms
53,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X, Y = map(int, input().split())

S = set()
dx = [-2, -2, -1, -1, 1, 1, 2, 2, 0]
dy = [-1, 1, -2, 2, -2, 2, -1, 1, 0]

for a in range(9):
    for b in range(9):
        for c in range(9):
            x = dx[a] + dx[b] + dx[c]
            y = dy[a] + dy[b] + dy[c]
            S.add((x, y))
            
print("YES") if (X, Y) in S else print("NO")
0