結果

問題 No.883 ぬりえ
ユーザー ks2mks2m
提出日時 2019-09-13 21:45:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,910 ms / 2,000 ms
コード長 1,115 bytes
コンパイル時間 2,451 ms
コンパイル使用メモリ 77,024 KB
実行使用メモリ 54,772 KB
最終ジャッジ日時 2024-07-04 10:33:41
合計ジャッジ時間 8,954 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,124 KB
testcase_01 AC 110 ms
39,836 KB
testcase_02 AC 114 ms
41,260 KB
testcase_03 AC 114 ms
41,040 KB
testcase_04 AC 121 ms
41,224 KB
testcase_05 AC 111 ms
41,200 KB
testcase_06 AC 110 ms
40,316 KB
testcase_07 AC 115 ms
40,992 KB
testcase_08 AC 120 ms
41,384 KB
testcase_09 AC 122 ms
41,072 KB
testcase_10 AC 108 ms
39,936 KB
testcase_11 AC 113 ms
40,232 KB
testcase_12 AC 119 ms
40,048 KB
testcase_13 AC 120 ms
39,800 KB
testcase_14 AC 154 ms
41,332 KB
testcase_15 AC 1,910 ms
54,772 KB
testcase_16 AC 708 ms
53,048 KB
testcase_17 AC 468 ms
52,828 KB
testcase_18 AC 157 ms
41,184 KB
testcase_19 AC 120 ms
40,232 KB
testcase_20 AC 120 ms
41,004 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 k = sc.nextInt();
		sc.close();

		int n2 = (int) Math.ceil(Math.sqrt(n));
		if (n2 <= k) {
			System.out.println(n2);
			int cnt = 0;
			for (int i = 0; i < n2; i++) {
				for (int j = 0; j < n2; j++) {
					if (cnt < n) {
						System.out.print('#');
						cnt++;
					} else {
						System.out.print('.');
					}
				}
				System.out.println();
			}
		} else {
			int m = (n + k - 1) / k;
			System.out.println(m);
			char[][] a = new char[m][m];
			for (int i = 0; i < m; i++) {
				for (int j = 0; j < m; j++) {
					a[i][j] = '.';
				}
			}
			int cnt = 0;
			label:
			for (int i = 0; i < m; i++) {
				int x = i;
				for (int j = 0; j < m; j++) {
					a[j][x] = '#';
					cnt++;
					if (cnt == n) {
						break label;
					}
					x++;
					if (x == m) {
						x = 0;
					}
				}
			}
			for (int i = 0; i < m; i++) {
				for (int j = 0; j < m; j++) {
					System.out.print(a[i][j]);
				}
				System.out.println();
			}
		}
	}
}
0