結果

問題 No.1465 Archaea
ユーザー kept1994kept1994
提出日時 2021-09-02 01:57:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 401 bytes
コンパイル時間 744 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 53,956 KB
最終ジャッジ日時 2024-05-06 16:25:57
合計ジャッジ時間 2,664 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,700 KB
testcase_01 AC 32 ms
52,888 KB
testcase_02 AC 34 ms
53,956 KB
testcase_03 AC 35 ms
52,400 KB
testcase_04 AC 34 ms
52,400 KB
testcase_05 AC 35 ms
52,392 KB
testcase_06 AC 37 ms
52,400 KB
testcase_07 AC 35 ms
52,236 KB
testcase_08 AC 38 ms
52,684 KB
testcase_09 AC 34 ms
51,996 KB
testcase_10 AC 35 ms
52,152 KB
testcase_11 AC 33 ms
52,744 KB
testcase_12 AC 34 ms
52,980 KB
testcase_13 AC 34 ms
53,452 KB
testcase_14 AC 35 ms
51,820 KB
testcase_15 AC 34 ms
52,020 KB
testcase_16 AC 34 ms
53,504 KB
testcase_17 AC 34 ms
53,424 KB
testcase_18 AC 34 ms
52,192 KB
testcase_19 AC 33 ms
53,760 KB
testcase_20 AC 33 ms
52,156 KB
testcase_21 AC 33 ms
53,016 KB
testcase_22 AC 35 ms
52,188 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N, K = map(int, input().split())
    cnt = 0
    while N > 1:
        if N % 2 == 1:
            if N <= 3:
                print("NO")
                return
            N -= 3
            cnt += 1
        else:
            N //= 2
            cnt += 1
    print("YES" if cnt <= K else "NO")
    return
        
if __name__ == '__main__':
    main()
0