結果

問題 No.501 穴と文字列
ユーザー hhgfhn1hhgfhn1
提出日時 2018-11-18 23:37:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 769 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 76,676 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-06-06 20:57:18
合計ジャッジ時間 5,668 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,160 KB
testcase_01 AC 116 ms
41,404 KB
testcase_02 AC 108 ms
39,752 KB
testcase_03 AC 116 ms
41,208 KB
testcase_04 AC 117 ms
41,044 KB
testcase_05 AC 111 ms
40,912 KB
testcase_06 AC 113 ms
40,360 KB
testcase_07 AC 109 ms
39,724 KB
testcase_08 AC 114 ms
40,896 KB
testcase_09 AC 117 ms
40,948 KB
testcase_10 AC 115 ms
41,028 KB
testcase_11 AC 113 ms
40,648 KB
testcase_12 AC 99 ms
39,484 KB
testcase_13 AC 114 ms
41,012 KB
testcase_14 AC 103 ms
40,820 KB
testcase_15 AC 103 ms
41,192 KB
testcase_16 AC 110 ms
40,872 KB
testcase_17 AC 107 ms
39,888 KB
testcase_18 AC 128 ms
41,132 KB
testcase_19 AC 120 ms
39,752 KB
testcase_20 AC 121 ms
40,304 KB
testcase_21 AC 143 ms
41,000 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