結果

問題 No.2663 Zero-Sum Submatrices
ユーザー tentententen
提出日時 2024-03-12 09:41:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 1,441 bytes
コンパイル時間 3,174 ms
コンパイル使用メモリ 89,548 KB
実行使用メモリ 40,436 KB
最終ジャッジ日時 2024-09-29 22:13:02
合計ジャッジ時間 7,166 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
38,192 KB
testcase_01 AC 75 ms
38,056 KB
testcase_02 AC 71 ms
37,760 KB
testcase_03 AC 77 ms
38,056 KB
testcase_04 AC 78 ms
37,916 KB
testcase_05 AC 84 ms
38,496 KB
testcase_06 AC 73 ms
37,696 KB
testcase_07 AC 74 ms
37,888 KB
testcase_08 AC 78 ms
37,844 KB
testcase_09 AC 82 ms
38,200 KB
testcase_10 AC 82 ms
38,744 KB
testcase_11 AC 75 ms
37,720 KB
testcase_12 AC 78 ms
37,976 KB
testcase_13 AC 83 ms
38,732 KB
testcase_14 AC 78 ms
38,200 KB
testcase_15 AC 82 ms
37,976 KB
testcase_16 AC 80 ms
38,588 KB
testcase_17 AC 74 ms
38,008 KB
testcase_18 AC 80 ms
37,896 KB
testcase_19 AC 87 ms
38,496 KB
testcase_20 AC 85 ms
38,420 KB
testcase_21 AC 94 ms
38,740 KB
testcase_22 AC 92 ms
38,300 KB
testcase_23 AC 86 ms
38,416 KB
testcase_24 AC 95 ms
38,868 KB
testcase_25 AC 95 ms
38,440 KB
testcase_26 AC 98 ms
39,120 KB
testcase_27 AC 104 ms
39,212 KB
testcase_28 AC 114 ms
39,296 KB
testcase_29 AC 113 ms
39,276 KB
testcase_30 AC 140 ms
40,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        String result = IntStream.range(0, 1 << n).mapToObj(i -> {
            return IntStream.range(0, 1 << m)
                .mapToObj(j -> String.valueOf((i << m) + j))
                .collect(Collectors.joining(" "));
        }).collect(Collectors.joining("\n"));
        System.out.println(result);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0