結果

問題 No.883 ぬりえ
ユーザー htensaihtensai
提出日時 2019-11-11 13:04:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 767 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 76,940 KB
実行使用メモリ 46,508 KB
最終ジャッジ日時 2024-09-15 05:11:49
合計ジャッジ時間 7,266 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
39,744 KB
testcase_01 AC 126 ms
40,880 KB
testcase_02 AC 125 ms
41,008 KB
testcase_03 AC 128 ms
41,116 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 129 ms
40,852 KB
testcase_08 AC 129 ms
41,024 KB
testcase_09 AC 130 ms
40,940 KB
testcase_10 AC 128 ms
40,820 KB
testcase_11 AC 114 ms
39,916 KB
testcase_12 AC 128 ms
41,020 KB
testcase_13 AC 130 ms
40,828 KB
testcase_14 WA -
testcase_15 AC 210 ms
46,508 KB
testcase_16 AC 184 ms
42,608 KB
testcase_17 AC 167 ms
41,804 KB
testcase_18 AC 131 ms
40,872 KB
testcase_19 WA -
testcase_20 AC 130 ms
40,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		int size = (n + k - 1) / k;
		char[][] field = new char[size][size];
		for (int i = 0; i < size; i++) {
		    Arrays.fill(field[i], '.');
		}
		int count = 0;
		StringBuilder sb = new StringBuilder();
		sb.append(size).append("\n");
		for (int i = 0; i < size; i++) {
		    for (int j = 0; j < size; j++) {
		        if (((j >= i && (i + k - 1) % size >= j) || (i + k > size && (j >= i || (i + k - 1) % size >= j ))) && count < n) {
		            field[i][j] = '#';
		            count++;
		        }
		    }
		    sb.append(new String(field[i])).append("\n");
		}
		System.out.print(sb);
	}
}
0