結果

問題 No.501 穴と文字列
ユーザー GoryudyumaGoryudyuma
提出日時 2017-05-09 16:30:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 957 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 74,228 KB
実行使用メモリ 55,992 KB
最終ジャッジ日時 2024-12-14 16:39:07
合計ジャッジ時間 7,519 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 377 ms
55,992 KB
testcase_01 AC 387 ms
53,776 KB
testcase_02 AC 119 ms
45,960 KB
testcase_03 AC 124 ms
46,340 KB
testcase_04 AC 126 ms
46,024 KB
testcase_05 AC 123 ms
46,256 KB
testcase_06 AC 130 ms
46,120 KB
testcase_07 AC 130 ms
46,340 KB
testcase_08 AC 117 ms
45,216 KB
testcase_09 AC 124 ms
46,412 KB
testcase_10 AC 119 ms
45,928 KB
testcase_11 AC 122 ms
46,068 KB
testcase_12 AC 121 ms
45,932 KB
testcase_13 AC 125 ms
46,148 KB
testcase_14 AC 116 ms
46,948 KB
testcase_15 AC 134 ms
46,388 KB
testcase_16 AC 124 ms
46,248 KB
testcase_17 AC 124 ms
46,388 KB
testcase_18 AC 387 ms
54,612 KB
testcase_19 AC 391 ms
54,392 KB
testcase_20 AC 389 ms
54,308 KB
testcase_21 AC 386 ms
54,184 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