小明和小王在玩一个乘法游戏。游戏的每一轮需要将2~9中的某一个数字和已经得到的数p乘起来。小明总是从p=1开始乘,然后是小王,接下来是小明,如此往复。在游戏开始之前,他们写下了一个整数n(1<n<42949000),得出的乘积p首次满足p≥n的游戏者获胜。
输入
输入每行包含一个整数n。
输出
对于每行输入,输出一行,要么是
小明 wins.
要么是
小王 wins.
假设双方都采取最优策略。
输入 输出
162 小明 wins.
17 小王wins.
34012226 小明 wins.
求解这个的C++或者C语言编译过程。
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
2条回答 默认 最新
- fuill 2022-06-15 07:25关注
参考这个https://blog.csdn.net/new_wu/article/details/7394311
原文代码#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <vector> #include <queue> #include <cmath> #include <string> #include <cctype> #include <map> #include <iomanip> using namespace std; #define eps 1e-8 #define pi acos(-1.0) #define inf 1<<30 #define linf 1LL<<60 #define pb push_back #define lc(x) (x << 1) #define rc(x) (x << 1 | 1) #define lowbit(x) (x & (-x)) #define ll long long double n; int main(){ while(~scanf("%lf",&n)){ while(n>18) n=n/18; if(n<=9) printf("Stan wins.\n"); else printf("Ollie wins.\n"); } return 0; }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 1无用
悬赏问题
- ¥15 CCF-CSP 2023 第三题 解压缩(50%)
- ¥100 网页游戏在本地页面修改游戏结果
- ¥30 comfyui openpose报错
- ¥20 Wpf Datarid单元格闪烁效果的实现
- ¥15 图像分割、图像边缘提取
- ¥15 sqlserver执行存储过程报错
- ¥100 nuxt、uniapp、ruoyi-vue 相关发布问题
- ¥15 浮窗和全屏应用同时存在,全屏应用输入法无法弹出
- ¥100 matlab2009 32位一直初始化
- ¥15 Expected type 'str | PathLike[str]…… bytes' instead