結果

問題 No.883 ぬりえ
ユーザー htensaihtensai
提出日時 2020-01-31 11:12:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 752 bytes
コンパイル時間 1,895 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-09-17 06:47:27
合計ジャッジ時間 6,472 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,268 KB
testcase_01 AC 125 ms
41,308 KB
testcase_02 AC 121 ms
41,468 KB
testcase_03 AC 120 ms
40,024 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 121 ms
41,260 KB
testcase_08 AC 125 ms
41,224 KB
testcase_09 AC 122 ms
41,356 KB
testcase_10 WA -
testcase_11 AC 118 ms
41,468 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 213 ms
44,736 KB
testcase_16 AC 150 ms
42,708 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 109 ms
41,488 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 m = (n + k - 1) / k;
        int mod = n % k;
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < m; i++) {
            char[] arr = new char[m];
            for (int j = 0; j < m; j++) {
                if (((i >= mod) && (i + j) % m < k) || ((i < mod) && (i + j) % m < k - 1)) {
                    arr[j] = '#';
                } else {
                    arr[j] = '.';
                }
            }
            sb.append(arr).append("\n");
        }
        System.out.println(m);
        System.out.print(sb);
    }
}
0