結果

問題 No.1831 Parasol
ユーザー ks2mks2m
提出日時 2022-02-04 22:56:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 910 bytes
コンパイル時間 2,165 ms
コンパイル使用メモリ 78,996 KB
実行使用メモリ 48,948 KB
最終ジャッジ日時 2024-06-11 12:35:27
合計ジャッジ時間 6,474 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,876 KB
testcase_01 AC 244 ms
48,948 KB
testcase_02 AC 99 ms
40,008 KB
testcase_03 AC 107 ms
41,088 KB
testcase_04 AC 231 ms
48,672 KB
testcase_05 AC 108 ms
40,952 KB
testcase_06 AC 94 ms
39,840 KB
testcase_07 AC 233 ms
48,160 KB
testcase_08 AC 109 ms
40,992 KB
testcase_09 AC 110 ms
41,224 KB
testcase_10 AC 217 ms
47,264 KB
testcase_11 AC 245 ms
47,948 KB
testcase_12 AC 192 ms
44,084 KB
testcase_13 AC 236 ms
48,520 KB
testcase_14 AC 145 ms
41,704 KB
testcase_15 AC 175 ms
42,688 KB
testcase_16 AC 115 ms
41,396 KB
testcase_17 AC 111 ms
41,460 KB
testcase_18 AC 159 ms
42,236 KB
testcase_19 AC 102 ms
40,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
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();
		sc.close();

		int end = n * 2 - 1;
		List<List<Integer>> list = new ArrayList<>(end);
		for (int i = 0; i < end; i++) {
			list.add(new ArrayList<>(n));
		}

		for (int i = end; i > n; i--) {
			for (int j = 0; j < i; j++) {
				list.get(j).add(i);
			}
		}
		for (int i = 1; i <= n; i++) {
			list.get(i - 1).add(i);
		}
		for (int i = n; i > 0; i--) {
			for (int j = end - i + 1; j < end; j++) {
				list.get(j).add(i);
			}
		}

		System.out.println(end);
		for (int i = 0; i < end; i++) {
			StringBuilder sb = new StringBuilder();
			for (int e : list.get(i)) {
				sb.append(e).append(' ');
			}
			sb.deleteCharAt(sb.length() - 1);
			System.out.println(sb.toString());
		}
	}
}
0