結果

問題 No.501 穴と文字列
ユーザー hhgfhn1hhgfhn1
提出日時 2018-11-18 23:31:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,288 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-06-06 20:57:09
合計ジャッジ時間 13,172 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,051 ms
41,440 KB
testcase_01 AC 1,014 ms
41,288 KB
testcase_02 AC 125 ms
41,052 KB
testcase_03 AC 126 ms
41,204 KB
testcase_04 AC 119 ms
40,688 KB
testcase_05 AC 122 ms
40,808 KB
testcase_06 AC 109 ms
39,872 KB
testcase_07 AC 122 ms
41,132 KB
testcase_08 AC 110 ms
39,924 KB
testcase_09 AC 121 ms
40,756 KB
testcase_10 AC 124 ms
41,072 KB
testcase_11 AC 120 ms
40,084 KB
testcase_12 AC 113 ms
40,060 KB
testcase_13 AC 126 ms
40,736 KB
testcase_14 AC 124 ms
41,204 KB
testcase_15 AC 112 ms
39,928 KB
testcase_16 AC 121 ms
40,780 KB
testcase_17 AC 124 ms
41,088 KB
testcase_18 AC 1,288 ms
41,596 KB
testcase_19 AC 1,238 ms
40,404 KB
testcase_20 AC 1,288 ms
41,132 KB
testcase_21 AC 1,261 ms
40,448 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