結果

問題 No.501 穴と文字列
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-05 13:52:38
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 186 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 848,584 KB
最終ジャッジ日時 2024-12-21 18:04:51
合計ジャッジ時間 6,918 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 AC 36 ms
51,328 KB
testcase_03 AC 35 ms
51,584 KB
testcase_04 AC 33 ms
51,456 KB
testcase_05 AC 34 ms
51,840 KB
testcase_06 AC 34 ms
51,328 KB
testcase_07 AC 36 ms
51,584 KB
testcase_08 AC 35 ms
51,712 KB
testcase_09 AC 34 ms
51,456 KB
testcase_10 AC 34 ms
51,328 KB
testcase_11 AC 35 ms
51,328 KB
testcase_12 AC 34 ms
51,200 KB
testcase_13 AC 35 ms
51,840 KB
testcase_14 AC 33 ms
51,584 KB
testcase_15 AC 35 ms
51,456 KB
testcase_16 AC 35 ms
51,456 KB
testcase_17 AC 36 ms
51,584 KB
testcase_18 AC 39 ms
57,600 KB
testcase_19 AC 38 ms
57,344 KB
testcase_20 AC 252 ms
285,952 KB
testcase_21 AC 447 ms
460,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())
S = []
for z in range(n+1):
    x = n-d+z
    y = d-2*z
    if x >= 0 and y >= 0:
        s = 'A'*y+'B'*z+'C'*x
        S.append(s)
S.sort()
print(S[0])
0