码迷,mamicode.com
首页 > 其他好文 > 详细

326. Power of Three

时间:2018-05-25 19:36:20      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:isp   return   solution   ==   std   col   cin   ret   syn   

 1 static int wing=[](){
 2     std::ios::sync_with_stdio(false);
 3     cin.tie(NULL);
 4     return 0;
 5 }();
 6 
 7 class Solution 
 8 {
 9 public:
10     bool isPowerOfThree(int n) 
11     {
12         return n>0&&(1162261467%n==0);
13     }
14 };

没啥好说的了。

326. Power of Three

标签:isp   return   solution   ==   std   col   cin   ret   syn   

原文地址:https://www.cnblogs.com/zhuangbijingdeboke/p/9090094.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!