結果

問題 No.501 穴と文字列
ユーザー shinwisteriashinwisteria
提出日時 2017-04-08 10:56:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 3,368 ms
コンパイル使用メモリ 74,596 KB
実行使用メモリ 41,972 KB
最終ジャッジ日時 2024-05-08 12:35:31
合計ジャッジ時間 7,271 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
41,832 KB
testcase_01 AC 143 ms
41,620 KB
testcase_02 AC 131 ms
41,648 KB
testcase_03 AC 131 ms
41,776 KB
testcase_04 AC 130 ms
41,076 KB
testcase_05 AC 130 ms
41,320 KB
testcase_06 AC 129 ms
41,300 KB
testcase_07 AC 131 ms
41,388 KB
testcase_08 AC 134 ms
41,416 KB
testcase_09 AC 132 ms
41,396 KB
testcase_10 AC 133 ms
41,448 KB
testcase_11 AC 133 ms
41,512 KB
testcase_12 AC 133 ms
41,452 KB
testcase_13 AC 132 ms
41,612 KB
testcase_14 AC 134 ms
41,048 KB
testcase_15 AC 133 ms
41,392 KB
testcase_16 AC 133 ms
41,484 KB
testcase_17 AC 131 ms
41,596 KB
testcase_18 AC 148 ms
41,924 KB
testcase_19 AC 152 ms
41,444 KB
testcase_20 AC 148 ms
41,684 KB
testcase_21 AC 143 ms
41,972 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