結果
問題 | No.1465 Archaea |
ユーザー | convexineq |
提出日時 | 2021-04-03 12:34:44 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 189 bytes |
コンパイル時間 | 560 ms |
コンパイル使用メモリ | 82,376 KB |
実行使用メモリ | 81,616 KB |
最終ジャッジ日時 | 2024-06-06 21:30:51 |
合計ジャッジ時間 | 3,015 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 34 ms
52,440 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | AC | 33 ms
52,964 KB |
testcase_11 | WA | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | AC | 30 ms
52,684 KB |
testcase_16 | AC | 32 ms
51,756 KB |
testcase_17 | WA | - |
testcase_18 | AC | 30 ms
52,288 KB |
testcase_19 | AC | 31 ms
52,072 KB |
testcase_20 | AC | 30 ms
52,148 KB |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | WA | - |
ソースコード
def f(n,k): if k < 0: return 0 if n%3==0 and 3*k >= n: return 1 if n%2: return f(n-3,k-1) return f(n//2,k-1) n,k = map(int,input().split()) print("YES" if f(n,k) else "NO")