博客
关于我
Bear and Poker CodeForces - 573A
阅读量:259 次
发布时间:2019-03-01

本文共 1005 字,大约阅读时间需要 3 分钟。

????n??????????3??????2???????????????????

???

  • ???????????????2^a * 3^b * k??????k??2?3?????k?????????????2?3??????

  • ???k???????k?????????????a?b???????????????????k????????????2?3????????

  • ??????????k????????????2?3???????

  • ?????

  • ????????????????2?3??????
  • ????????????????
  • ????????YES????????NO??
  • ?????

    #include 
    #include
    #include
    #include
    #include
    #include
    #include
    #include
    #include
    using namespace std;int root(int x) { while (x % 2 == 0) x /= 2; while (x % 3 == 0) x /= 3; return x;}int main() { int n; cin >> n; vector
    a(n); for (int i = 0; i < n; ++i) { a[i] = root(a[i]); } bool same = true; int first = a[0]; for (size_t i = 1; i < n; ++i) { if (a[i] != first) { same = false; break; } } if (same) { cout << "YES"; } else { cout << "NO"; }}

    ???

    • ????????root??????????????2?3?????????????
    • ???????????n????????
    • ????????????????????2?3?????????????
    • ??????????????????????
    • ??????????????YES???NO??

    ???????????????????????????????

    转载地址:http://tdnt.baihongyu.com/

    你可能感兴趣的文章
    Node入门之创建第一个HelloNode
    查看>>
    NOIp2005 过河
    查看>>
    NotImplementedError: Cannot copy out of meta tensor; no data! Please use torch.nn.Module.to_empty()
    查看>>
    npm run build 失败Compiler server unexpectedly exited with code: null and signal: SIGBUS
    查看>>
    npm WARN deprecated core-js@2.6.12 core-js@<3.3 is no longer maintained and not recommended for usa
    查看>>
    npm前端包管理工具简介---npm工作笔记001
    查看>>
    npm和yarn的使用对比
    查看>>
    npm报错unable to access ‘https://github.com/sohee-lee7/Squire.git/‘
    查看>>
    npm的问题:config global `--global`, `--local` are deprecated. Use `--location=global` instead 的解决办法
    查看>>
    NPOI利用多任务模式分批写入多个Excel
    查看>>
    NR,NF,FNR
    查看>>
    nrf开发笔记一开发软件
    查看>>
    NSDateFormatter的替代方法
    查看>>
    nsis 安装脚本示例(转)
    查看>>
    NSOperation基本操作
    查看>>
    NSSet集合 无序的 不能重复的
    查看>>
    NT AUTHORITY\NETWORK SERVICE 权限问题
    查看>>
    ntko web firefox跨浏览器插件_深度比较:2019年6个最好的跨浏览器测试工具
    查看>>
    ntko文件存取错误_苹果推送 macOS 10.15.4:iCloud 云盘文件夹共享终于来了
    查看>>
    Nuget~管理自己的包包
    查看>>