結果

問題 No.501 穴と文字列
コンテスト
ユーザー Grenache
提出日時 2017-04-09 11:15:50
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 796 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,541 ms
コンパイル使用メモリ 83,108 KB
実行使用メモリ 42,496 KB
最終ジャッジ日時 2026-05-25 09:53:47
合計ジャッジ時間 5,068 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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