結果

問題 No.501 穴と文字列
ユーザー GrenacheGrenache
提出日時 2017-04-09 11:15:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 796 bytes
コンパイル時間 3,097 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-05-08 12:36:08
合計ジャッジ時間 6,418 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,304 KB
testcase_01 AC 113 ms
40,164 KB
testcase_02 AC 115 ms
40,864 KB
testcase_03 AC 116 ms
41,084 KB
testcase_04 AC 118 ms
41,172 KB
testcase_05 AC 106 ms
40,212 KB
testcase_06 AC 116 ms
41,128 KB
testcase_07 AC 119 ms
41,364 KB
testcase_08 AC 123 ms
41,332 KB
testcase_09 AC 116 ms
41,176 KB
testcase_10 AC 117 ms
41,452 KB
testcase_11 AC 118 ms
40,972 KB
testcase_12 AC 107 ms
40,352 KB
testcase_13 AC 116 ms
41,272 KB
testcase_14 AC 118 ms
41,304 KB
testcase_15 AC 108 ms
40,696 KB
testcase_16 AC 111 ms
40,196 KB
testcase_17 AC 105 ms
40,440 KB
testcase_18 AC 126 ms
41,308 KB
testcase_19 AC 123 ms
41,344 KB
testcase_20 AC 114 ms
40,356 KB
testcase_21 AC 123 ms
41,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder501 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();
		int d = sc.nextInt();

		int b = Math.max(0, d - n);
		int a = d - 2 * b;
		int c = n - (a + b);

		StringBuilder ret = new StringBuilder();
		while (a-- > 0) {
			ret.append('A');
		}
		while (b-- > 0) {
			ret.append('B');
		}
		while (c-- > 0) {
			ret.append('C');
		}

		pr.println(ret);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0