結果

問題 No.1465 Archaea
ユーザー first_vilfirst_vil
提出日時 2021-04-02 22:20:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 392 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-06 07:09:07
合計ジャッジ時間 1,770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 31 ms
11,008 KB
testcase_08 RE -
testcase_09 AC 27 ms
10,496 KB
testcase_10 AC 27 ms
10,496 KB
testcase_11 AC 28 ms
10,880 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 27 ms
10,496 KB
testcase_16 AC 27 ms
10,752 KB
testcase_17 AC 26 ms
10,496 KB
testcase_18 AC 25 ms
10,496 KB
testcase_19 AC 26 ms
10,496 KB
testcase_20 AC 26 ms
10,624 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1000000)
from functools import lru_cache

@lru_cache(maxsize=100000)
def solve(n,k):
  if k==0:
    return n==1
  if n==0:
    return False
  
  if n&1:
    return solve(n-3,k-1)
  elif 6<=n and 2<=k:
    return solve(n//2,k-1) or (k&1 and solve(n//2,(k+1)//2))
  else:
    return solve(n//2,k-1)
n,k=map(int,input().split())
print('YNEOS'[not solve(n,k)::2])
0