結果

問題 No.501 穴と文字列
ユーザー Mcpu3Mcpu3
提出日時 2018-09-29 19:01:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 421 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 2,217 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 51,072 KB
最終ジャッジ日時 2024-10-12 08:19:40
合計ジャッジ時間 7,885 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 408 ms
50,240 KB
testcase_01 AC 395 ms
50,248 KB
testcase_02 AC 133 ms
41,116 KB
testcase_03 AC 133 ms
41,520 KB
testcase_04 AC 132 ms
41,120 KB
testcase_05 AC 132 ms
41,128 KB
testcase_06 AC 133 ms
41,400 KB
testcase_07 AC 134 ms
41,204 KB
testcase_08 AC 132 ms
41,204 KB
testcase_09 AC 134 ms
41,688 KB
testcase_10 AC 134 ms
41,352 KB
testcase_11 AC 131 ms
41,168 KB
testcase_12 AC 130 ms
41,312 KB
testcase_13 AC 130 ms
41,340 KB
testcase_14 AC 133 ms
41,288 KB
testcase_15 AC 135 ms
41,028 KB
testcase_16 AC 138 ms
41,236 KB
testcase_17 AC 138 ms
41,228 KB
testcase_18 AC 421 ms
50,308 KB
testcase_19 AC 420 ms
51,072 KB
testcase_20 AC 414 ms
50,648 KB
testcase_21 AC 419 ms
50,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt(), D = sc.nextInt();
        sc.close();
        if (N > D) {
            for (int i = 0; i < D; ++i) System.out.print("A");
            for (int i = 0; i < N - D; ++i) System.out.print("C");
        }
        else {
            for (int i = 0; i < 2 * N - D; ++i) System.out.print("A");
            for (int i = 0; i < D - N; ++i) System.out.print("B");
        }
    }
}
0