結果

問題 No.501 穴と文字列
ユーザー samplelpmassamplelpmas
提出日時 2017-04-15 15:37:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 2,396 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-12-14 16:33:36
合計ジャッジ時間 5,954 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
41,424 KB
testcase_01 AC 154 ms
41,536 KB
testcase_02 AC 107 ms
40,120 KB
testcase_03 AC 113 ms
40,784 KB
testcase_04 AC 119 ms
41,160 KB
testcase_05 AC 124 ms
41,136 KB
testcase_06 AC 117 ms
41,104 KB
testcase_07 AC 120 ms
41,332 KB
testcase_08 AC 113 ms
40,100 KB
testcase_09 AC 118 ms
40,944 KB
testcase_10 AC 119 ms
40,348 KB
testcase_11 AC 132 ms
41,296 KB
testcase_12 AC 126 ms
41,252 KB
testcase_13 AC 133 ms
41,140 KB
testcase_14 AC 129 ms
41,260 KB
testcase_15 AC 129 ms
41,168 KB
testcase_16 AC 123 ms
41,180 KB
testcase_17 AC 118 ms
40,144 KB
testcase_18 AC 141 ms
41,648 KB
testcase_19 AC 138 ms
41,352 KB
testcase_20 AC 142 ms
41,368 KB
testcase_21 AC 162 ms
41,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int numCharacters = sc.nextInt();
        int numHoles = sc.nextInt();

        StringBuilder sb = new StringBuilder();

        while (numHoles > numCharacters) {

            sb.append('B');
            numHoles -= 2;
            numCharacters--;

        }

        while (numHoles != 0) {

            sb.insert(0, 'A');
            numHoles--;
            numCharacters--;

        }

        while (numCharacters != 0) {

            sb.append('C');
            numCharacters--;

        }

        System.out.println(sb.toString());

    }

}
0