結果

問題 No.501 穴と文字列
ユーザー YamaKasaYamaKasa
提出日時 2018-09-24 16:02:49
言語 Java
(openjdk 23)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 77,728 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-09-22 04:48:45
合計ジャッジ時間 5,942 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,760 KB
testcase_01 AC 139 ms
41,404 KB
testcase_02 AC 114 ms
41,344 KB
testcase_03 AC 126 ms
41,500 KB
testcase_04 AC 125 ms
41,412 KB
testcase_05 AC 124 ms
41,376 KB
testcase_06 AC 126 ms
41,436 KB
testcase_07 AC 127 ms
41,372 KB
testcase_08 AC 128 ms
41,200 KB
testcase_09 AC 127 ms
41,404 KB
testcase_10 AC 114 ms
41,492 KB
testcase_11 AC 127 ms
41,320 KB
testcase_12 AC 125 ms
41,276 KB
testcase_13 AC 117 ms
40,648 KB
testcase_14 AC 128 ms
41,160 KB
testcase_15 AC 115 ms
41,152 KB
testcase_16 AC 126 ms
41,304 KB
testcase_17 AC 126 ms
41,656 KB
testcase_18 AC 123 ms
41,792 KB
testcase_19 AC 124 ms
40,616 KB
testcase_20 AC 141 ms
41,660 KB
testcase_21 AC 137 ms
41,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int D = scan.nextInt();
		scan.close();
		if(N == D) {
			StringBuilder sb = new StringBuilder();
			for(int i = 0; i < N; i++) {
				sb.append("A");
			}
			System.out.println(sb.toString());
		}else if(N > D){
			int k = N - D;
			StringBuilder sb = new StringBuilder();
			for(int i = 0; i < D; i++) {
				sb.append("A");
			}
			for(int i = 0; i < k; i++) {
				sb.append("C");
			}
			System.out.println(sb.toString());
		}else {
			int k1 = D - N;
			int k2 = 2 * N - D;
			StringBuilder sb = new StringBuilder();
			for(int i = 0; i < k2; i++) {
				sb.append("A");
			}
			for(int i = 0; i < k1; i++) {
				sb.append("B");
			}
			System.out.println(sb.toString());
		}
	}
}
0