結果

問題 No.501 穴と文字列
ユーザー shinwisteriashinwisteria
提出日時 2017-04-08 10:56:39
言語 Java
(openjdk 23)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 3,670 ms
コンパイル使用メモリ 75,380 KB
実行使用メモリ 41,956 KB
最終ジャッジ日時 2024-12-14 16:30:34
合計ジャッジ時間 7,822 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,956 KB
testcase_01 AC 141 ms
41,652 KB
testcase_02 AC 134 ms
41,352 KB
testcase_03 AC 132 ms
41,268 KB
testcase_04 AC 130 ms
41,816 KB
testcase_05 AC 132 ms
41,224 KB
testcase_06 AC 132 ms
41,568 KB
testcase_07 AC 136 ms
41,560 KB
testcase_08 AC 124 ms
40,408 KB
testcase_09 AC 131 ms
41,152 KB
testcase_10 AC 131 ms
41,148 KB
testcase_11 AC 131 ms
41,528 KB
testcase_12 AC 137 ms
41,372 KB
testcase_13 AC 133 ms
41,432 KB
testcase_14 AC 134 ms
41,336 KB
testcase_15 AC 134 ms
41,360 KB
testcase_16 AC 135 ms
41,340 KB
testcase_17 AC 134 ms
41,484 KB
testcase_18 AC 141 ms
41,796 KB
testcase_19 AC 150 ms
41,520 KB
testcase_20 AC 143 ms
41,908 KB
testcase_21 AC 142 ms
41,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class AnatoMojiretsu {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int N = s.nextInt() , D = s.nextInt();
		s.close();
		StringBuilder str = new StringBuilder();
		while(N != 0){
			if(D == 2*N){
				str.append("B");
				D -= 2;
				N--;
			}else if(D != 0){
				str.append("A");
				D--;
				N--;
			}else{
				str.append("C");
				N--;
			}
		}
		System.out.println(str);

	}

}
0