結果

問題 No.501 穴と文字列
ユーザー hhgfhn1hhgfhn1
提出日時 2018-11-18 23:31:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,440 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 3,466 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 41,724 KB
最終ジャッジ日時 2024-12-24 15:11:05
合計ジャッジ時間 16,590 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,184 ms
41,660 KB
testcase_01 AC 1,138 ms
41,548 KB
testcase_02 AC 145 ms
41,240 KB
testcase_03 AC 149 ms
41,200 KB
testcase_04 AC 152 ms
41,292 KB
testcase_05 AC 144 ms
41,416 KB
testcase_06 AC 150 ms
41,160 KB
testcase_07 AC 149 ms
41,104 KB
testcase_08 AC 148 ms
41,164 KB
testcase_09 AC 150 ms
41,188 KB
testcase_10 AC 148 ms
41,204 KB
testcase_11 AC 150 ms
41,304 KB
testcase_12 AC 133 ms
39,936 KB
testcase_13 AC 153 ms
40,972 KB
testcase_14 AC 150 ms
41,412 KB
testcase_15 AC 148 ms
41,408 KB
testcase_16 AC 148 ms
41,308 KB
testcase_17 AC 151 ms
41,240 KB
testcase_18 AC 1,438 ms
41,272 KB
testcase_19 AC 1,440 ms
41,724 KB
testcase_20 AC 1,436 ms
41,432 KB
testcase_21 AC 1,428 ms
41,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int n=scanner.nextInt();
		int d=scanner.nextInt();
		int max=Integer.MIN_VALUE;
		int a=0;
		int b=0;
		int c=0;
		for(int i=0;i<=n;i++) {
			for(int j=0;i+j<=n;j++) {
				int k=n-i-j;
				if(i*0+j*1+k*2==d) {
					if(max<j) {
						max=j;
						a=j;
						b=k;
						c=i;
					}
				}
			}
		}
		StringBuilder sb=new StringBuilder();
		for(int i=0;i<a;i++) {
			sb.append("A");
		}
		for(int i=0;i<b;i++) {
			sb.append("B");
		}
		for(int i=0;i<c;i++) {
			sb.append("C");
		}
		System.out.println(sb);
	}
}
0