結果

問題 No.2663 Zero-Sum Submatrices
ユーザー ks2mks2m
提出日時 2024-03-08 21:12:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 74,824 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-09-29 18:53:03
合計ジャッジ時間 7,479 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,108 KB
testcase_01 AC 103 ms
52,892 KB
testcase_02 AC 115 ms
54,100 KB
testcase_03 AC 105 ms
52,728 KB
testcase_04 AC 119 ms
54,164 KB
testcase_05 AC 106 ms
52,936 KB
testcase_06 AC 105 ms
54,100 KB
testcase_07 AC 104 ms
52,924 KB
testcase_08 AC 116 ms
54,052 KB
testcase_09 AC 117 ms
54,440 KB
testcase_10 AC 122 ms
54,000 KB
testcase_11 AC 116 ms
53,736 KB
testcase_12 AC 102 ms
53,068 KB
testcase_13 AC 124 ms
54,228 KB
testcase_14 AC 119 ms
54,192 KB
testcase_15 AC 120 ms
54,444 KB
testcase_16 AC 117 ms
53,644 KB
testcase_17 AC 108 ms
52,976 KB
testcase_18 AC 121 ms
54,000 KB
testcase_19 AC 116 ms
53,324 KB
testcase_20 AC 130 ms
54,200 KB
testcase_21 AC 144 ms
54,196 KB
testcase_22 AC 137 ms
54,072 KB
testcase_23 AC 140 ms
54,012 KB
testcase_24 AC 124 ms
53,228 KB
testcase_25 AC 141 ms
54,364 KB
testcase_26 AC 135 ms
52,892 KB
testcase_27 AC 143 ms
53,764 KB
testcase_28 AC 168 ms
54,324 KB
testcase_29 AC 160 ms
54,416 KB
testcase_30 AC 166 ms
53,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		sc.close();

		int n2 = 1 << n;
		int m2 = 1 << m;
		int idx = 0;
		for (int i = 0; i < n2; i++) {
			StringBuilder sb = new StringBuilder();
			for (int j = 0; j < m2; j++) {
				sb.append(idx).append(' ');
				idx++;
			}
			sb.deleteCharAt(sb.length() - 1);
			System.out.println(sb.toString());
		}
	}
}
0