結果

問題 No.501 穴と文字列
ユーザー fal_rndfal_rnd
提出日時 2017-04-07 22:29:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 2,015 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 41,744 KB
最終ジャッジ日時 2024-12-14 16:19:00
合計ジャッジ時間 5,554 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,684 KB
testcase_01 AC 112 ms
40,036 KB
testcase_02 AC 114 ms
39,960 KB
testcase_03 AC 119 ms
41,160 KB
testcase_04 AC 122 ms
41,272 KB
testcase_05 AC 114 ms
40,388 KB
testcase_06 AC 123 ms
41,088 KB
testcase_07 AC 112 ms
40,176 KB
testcase_08 AC 131 ms
41,240 KB
testcase_09 AC 112 ms
40,000 KB
testcase_10 AC 115 ms
40,176 KB
testcase_11 AC 108 ms
40,316 KB
testcase_12 AC 127 ms
41,448 KB
testcase_13 AC 123 ms
41,328 KB
testcase_14 AC 115 ms
40,180 KB
testcase_15 AC 131 ms
41,128 KB
testcase_16 AC 125 ms
41,324 KB
testcase_17 AC 122 ms
41,116 KB
testcase_18 AC 118 ms
40,296 KB
testcase_19 AC 134 ms
41,744 KB
testcase_20 AC 121 ms
40,292 KB
testcase_21 AC 134 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	
	static final Scanner s=new Scanner(System.in);
	
	public static void main(String[] __){
		int n=s.nextInt(),d=s.nextInt();
		
		StringBuilder sb=new StringBuilder();
		for(int i=n;i>0;i--)
			sb.append('A');
		
		
		sb.delete(0,Math.abs(n-d));
		if(n<d)
			for(int i=d-n;i>0;i--)
				sb.append('B');
		else
			for(int i=n-d;i>0;i--)
				sb.append('C');
		System.out.println(sb.toString());
	}
}
0