結果

問題 No.501 穴と文字列
ユーザー hhgfhn1hhgfhn1
提出日時 2018-11-18 23:37:10
言語 Java
(openjdk 23)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 769 bytes
コンパイル時間 2,891 ms
コンパイル使用メモリ 77,520 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-12-24 15:11:13
合計ジャッジ時間 7,290 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
41,276 KB
testcase_01 AC 161 ms
41,112 KB
testcase_02 AC 147 ms
40,960 KB
testcase_03 AC 151 ms
40,992 KB
testcase_04 AC 149 ms
41,152 KB
testcase_05 AC 146 ms
41,172 KB
testcase_06 AC 148 ms
41,184 KB
testcase_07 AC 149 ms
41,136 KB
testcase_08 AC 147 ms
41,184 KB
testcase_09 AC 146 ms
41,204 KB
testcase_10 AC 150 ms
41,016 KB
testcase_11 AC 150 ms
41,132 KB
testcase_12 AC 152 ms
41,224 KB
testcase_13 AC 151 ms
41,228 KB
testcase_14 AC 146 ms
41,168 KB
testcase_15 AC 153 ms
41,252 KB
testcase_16 AC 149 ms
41,124 KB
testcase_17 AC 156 ms
41,264 KB
testcase_18 AC 165 ms
41,312 KB
testcase_19 AC 182 ms
41,200 KB
testcase_20 AC 165 ms
41,484 KB
testcase_21 AC 163 ms
41,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int n=scanner.nextInt();
		int d=scanner.nextInt();
		if(n>=d) {
			StringBuilder sb=new StringBuilder();
			for(int i=0;i<d;i++) {
				sb.append("A");
			}
			for(int i=0;i<n-d;i++) {
				sb.append("C");
			}
			System.out.println(sb);
			return;
		}
		int max=Integer.MIN_VALUE;
		int a=0;
		int b=0;
		for(int j=0;j<=n;j++) {
				int k=n-j;
				if(j*1+k*2==d) {
					if(max<j) {
						max=j;
						a=j;
						b=k;
					}
				}
			}
		StringBuilder sb=new StringBuilder();
		for(int i=0;i<a;i++) {
			sb.append("A");
		}
		for(int i=0;i<b;i++) {
			sb.append("B");
		}
		System.out.println(sb);
	}
}
0