結果

問題 No.501 穴と文字列
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-13 23:06:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 74,296 KB
実行使用メモリ 41,772 KB
最終ジャッジ日時 2024-05-08 07:43:51
合計ジャッジ時間 5,850 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,520 KB
testcase_01 AC 131 ms
41,680 KB
testcase_02 AC 124 ms
41,128 KB
testcase_03 AC 113 ms
40,060 KB
testcase_04 AC 125 ms
41,196 KB
testcase_05 AC 126 ms
41,248 KB
testcase_06 AC 125 ms
41,224 KB
testcase_07 AC 125 ms
41,068 KB
testcase_08 AC 126 ms
41,072 KB
testcase_09 AC 113 ms
40,296 KB
testcase_10 AC 122 ms
41,104 KB
testcase_11 AC 123 ms
41,416 KB
testcase_12 AC 124 ms
41,360 KB
testcase_13 AC 117 ms
40,900 KB
testcase_14 AC 122 ms
41,588 KB
testcase_15 AC 114 ms
39,880 KB
testcase_16 AC 125 ms
41,576 KB
testcase_17 AC 122 ms
40,892 KB
testcase_18 AC 133 ms
41,684 KB
testcase_19 AC 132 ms
41,168 KB
testcase_20 AC 123 ms
40,532 KB
testcase_21 AC 139 ms
41,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int leng = sc.nextInt();
		int hole_num = sc.nextInt();
		
		StringBuilder sb = new StringBuilder();
		if (hole_num==0) {
			for (int i=0; i<leng; i++) {
				sb.append("C");
			}
		}
		else if (hole_num <= leng) {
			for (int i=0; i<leng; i++) {
				if (hole_num > 0) {
					sb.append("A");
					hole_num--;
				}
				else {
					sb.append("C");
				}
			}
		}
		else {
			int b_num = hole_num - leng;
			int a_num = leng - b_num;
			for (int i=0; i<a_num; i++) {
				sb.append("A");
			}
			for (int i=0; i<b_num; i++) {
				sb.append("B");
			}
		}
		System.out.println(sb);
	}
}
0