結果

問題 No.1465 Archaea
ユーザー 小野寺健小野寺健
提出日時 2021-04-29 21:32:13
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 721 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-07-17 22:01:35
合計ジャッジ時間 2,396 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N, K = map(int, input().split())

if N == 1:
    print('YES')
else:
   fw = {1}
   bw = {N}
   cnt = 0
   while True:
       nfw = set()
       for M in fw:
           if M * 2 <= N:
               nfw.add(M*2)
           if M+3 <= N:
               nfw.add(M+3)
       fw = nfw
       cnt += 1
       if len(fw & bw) > 0:
           print('YES')
           break
       elif cnt == K:
           print('NO')
           break
       nbw = set()
       for M in bw:
           if M % 2 == 0:
               nbw.add(M//2)
           if M > 3:
               nbw.add(M-3)
       bw = nbw
       cnt += 1
       if len(fw & bw) > 0:
           print('YES')
           break
       elif cnt == K:
           print('NO')
           break  
0