結果

問題 No.501 穴と文字列
ユーザー samplelpmassamplelpmas
提出日時 2017-04-15 15:35:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 2,026 ms
コンパイル使用メモリ 74,812 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-05-08 12:37:27
合計ジャッジ時間 5,407 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,540 KB
testcase_01 AC 154 ms
41,344 KB
testcase_02 AC 115 ms
41,216 KB
testcase_03 AC 114 ms
41,056 KB
testcase_04 AC 116 ms
41,064 KB
testcase_05 AC 112 ms
41,208 KB
testcase_06 AC 114 ms
41,128 KB
testcase_07 AC 128 ms
41,136 KB
testcase_08 AC 102 ms
40,048 KB
testcase_09 AC 110 ms
40,776 KB
testcase_10 AC 116 ms
41,388 KB
testcase_11 AC 100 ms
39,912 KB
testcase_12 AC 111 ms
41,416 KB
testcase_13 AC 110 ms
40,996 KB
testcase_14 AC 113 ms
41,112 KB
testcase_15 AC 104 ms
39,952 KB
testcase_16 AC 114 ms
41,228 KB
testcase_17 AC 116 ms
41,120 KB
testcase_18 AC 121 ms
41,392 KB
testcase_19 AC 138 ms
41,180 KB
testcase_20 AC 141 ms
41,640 KB
testcase_21 AC 149 ms
41,248 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