/ neko /

记录详情

Runtime Error


  
# 状态 耗时 内存占用
#1 Runtime Error Hangup 7ms 1.828 MiB
#2 Runtime Error Hangup 8ms 1.793 MiB
#3 Runtime Error Hangup 8ms 1.777 MiB
#4 Runtime Error Hangup 7ms 1.773 MiB
#5 Runtime Error Hangup 8ms 1.762 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-01-24 20:33:01
评测时间
2021-02-05 23:18:21
评测机
分数
0
总耗时
40ms
峰值内存
1.828 MiB