只过了7,8两个点,其他全部WA,样例能过

P1319 压缩技术

日之朝矣 @ 2022-01-14 22:44:59

瞪了好长时间,还是找不到问题出在哪里,没法下载测试数据,只好求助大佬们了TAT

import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int flag = 1;
        int count = 0;
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
                if (count == 0){
                    count = sc.nextInt();
                    flag = flag == 1 ? 0 : 1;
                }
                System.out.print(flag);
                count--;
            }
            System.out.println();
        }
    }
}

by 日之朝矣 @ 2022-01-15 09:17:26

可算解决了,找人帮忙下载下测试数据,发现输入数据中有0,,,,为什么会有0啊,上去就把这种可能性排除了。。。


by 日之朝矣 @ 2022-01-15 09:38:55

@日之朝矣 奥对,第二个输入的数据为0还是挺合理的


by SweetAC @ 2022-02-15 22:31:13

@日之朝矣 谢谢,我也犯了这个错


|