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

1018.可被 5 整除的二进制前缀

时间:2019-07-08 13:29:26      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:png   ima   lse   temp   image   add   solution   技术   ==   

技术图片

能不能被5整除都看 看输入数字的最后一位是否为 0或者5 也就是最后一位是否能被整除
这道题很容易就溢出 所以我们仅包括最后几位即可

class Solution {
   public List<Boolean> prefixesDivBy5(int[] A) {
        List<Boolean> ans = new ArrayList<Boolean>();
        int temp = 0 ; 
        for(int i = 0 ; i < A.length ;i++) {
            temp = temp*2+A[i];
            temp %=100;
 
            if(temp %5==0) {
                ans.add(true);
            }
            else{
                ans.add(false);
            }
        }
        return ans;
    }
}

1018.可被 5 整除的二进制前缀

标签:png   ima   lse   temp   image   add   solution   技术   ==   

原文地址:https://www.cnblogs.com/cznczai/p/11150330.html

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