/ neko /

记录详情

Accepted


  
# 状态 耗时 内存占用
#1 Accepted 132ms 9.156 MiB
#2 Accepted 130ms 9.16 MiB
#3 Accepted 133ms 9.156 MiB
#4 Accepted 130ms 9.164 MiB
#5 Accepted 127ms 9.215 MiB

代码

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner in=new Scanner(System.in);
        int n=in.nextInt();
        int[] a=new int[n];
        for (int i=0;i<a.length;i++){
            a[i]=in.nextInt();
        }
        List<Boolean> b=new ArrayList<>();
        b=prefixesDivBy5(a);
        for (boolean c:
             b) {
            System.out.print(c+" ");
        }
    }
    public  static List<Boolean> prefixesDivBy5(int[] A) {
        List<Boolean> list = new ArrayList<Boolean>();
        int prefix = 0;
        int length = A.length;
        for (int i = 0; i < length; i++) {
            prefix = ((prefix << 1) + A[i]) % 5;
            list.add(prefix == 0);
        }
        return list;
    }
    }

信息

递交者
类型
递交
题目
P1004 1004. 被5整除
题目数据
下载
语言
Java
递交时间
2021-02-09 10:30:50
评测时间
2021-02-09 10:30:50
评测机
分数
25
总耗时
653ms
峰值内存
9.215 MiB