結果

問題 No.501 穴と文字列
ユーザー ぴろずぴろず
提出日時 2017-04-07 22:55:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 496 bytes
コンパイル時間 1,843 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-07-16 02:49:26
合計ジャッジ時間 5,428 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 133 ms
54,016 KB
testcase_02 AC 128 ms
54,236 KB
testcase_03 AC 121 ms
54,100 KB
testcase_04 AC 123 ms
54,168 KB
testcase_05 WA -
testcase_06 AC 112 ms
53,456 KB
testcase_07 AC 127 ms
54,424 KB
testcase_08 AC 122 ms
54,212 KB
testcase_09 AC 129 ms
54,048 KB
testcase_10 AC 123 ms
53,968 KB
testcase_11 AC 107 ms
53,012 KB
testcase_12 AC 118 ms
54,044 KB
testcase_13 AC 122 ms
54,044 KB
testcase_14 WA -
testcase_15 AC 125 ms
54,168 KB
testcase_16 AC 110 ms
53,096 KB
testcase_17 AC 124 ms
54,188 KB
testcase_18 WA -
testcase_19 AC 131 ms
54,424 KB
testcase_20 WA -
testcase_21 AC 127 ms
54,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no501;

import java.util.Scanner;

public class Main {
	static int[] h = {1,2,0};
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int d = sc.nextInt();
		char[] c = new char[n];
		for(int i=0;i<n;i++) {
			for(int j=0;j<=2;j++) {
				if ((i == n - 1 && d == h[j]) || (i < n - 1 && (n-1-i) * 2 >= d - h[j])) {
					c[i] = (char) ('A' + j);
					d -= h[j];
					break;
				}
			}
		}
		System.out.println(String.valueOf(c));
	}

}
0