結果

問題 No.501 穴と文字列
ユーザー GoryudyumaGoryudyuma
提出日時 2017-05-09 16:30:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 412 ms / 2,000 ms
コード長 957 bytes
コンパイル時間 2,187 ms
コンパイル使用メモリ 75,796 KB
実行使用メモリ 51,236 KB
最終ジャッジ日時 2024-05-08 12:40:53
合計ジャッジ時間 7,528 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 394 ms
50,272 KB
testcase_01 AC 380 ms
49,800 KB
testcase_02 AC 114 ms
40,020 KB
testcase_03 AC 126 ms
41,448 KB
testcase_04 AC 111 ms
40,396 KB
testcase_05 AC 127 ms
41,128 KB
testcase_06 AC 118 ms
40,892 KB
testcase_07 AC 126 ms
41,456 KB
testcase_08 AC 114 ms
40,396 KB
testcase_09 AC 125 ms
41,484 KB
testcase_10 AC 119 ms
40,960 KB
testcase_11 AC 116 ms
40,812 KB
testcase_12 AC 118 ms
40,812 KB
testcase_13 AC 125 ms
41,264 KB
testcase_14 AC 131 ms
41,700 KB
testcase_15 AC 113 ms
39,888 KB
testcase_16 AC 124 ms
41,064 KB
testcase_17 AC 120 ms
40,040 KB
testcase_18 AC 406 ms
50,292 KB
testcase_19 AC 412 ms
50,248 KB
testcase_20 AC 405 ms
50,304 KB
testcase_21 AC 404 ms
51,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
        public static void main(String[] args){
                try(Scanner sc = new Scanner(System.in)){
                        int N = sc.nextInt(), D = sc.nextInt();
                        while(N != 0) {
                                 if(D == 0){
                                        System.out.print("C");
                                        N--;
                                 }else if(N * 2 > D){
                                        System.out.print("A");
                                        N--;
                                        D--;
                                } else if(N * 2 == D) {
                                        System.out.print("B");
                                        N--;
                                        D-=2;
                                }
                        }
                        System.out.println("");
                }
        }
}
0