結果

問題 No.501 穴と文字列
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-05 13:56:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 66,644 KB
最終ジャッジ日時 2024-06-01 11:44:10
合計ジャッジ時間 2,150 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
66,644 KB
testcase_01 AC 51 ms
66,512 KB
testcase_02 AC 39 ms
52,396 KB
testcase_03 AC 39 ms
52,728 KB
testcase_04 AC 39 ms
52,412 KB
testcase_05 AC 38 ms
52,032 KB
testcase_06 AC 39 ms
52,540 KB
testcase_07 AC 39 ms
52,112 KB
testcase_08 AC 38 ms
52,160 KB
testcase_09 AC 38 ms
52,388 KB
testcase_10 AC 39 ms
53,216 KB
testcase_11 AC 40 ms
52,572 KB
testcase_12 AC 40 ms
53,856 KB
testcase_13 AC 40 ms
52,216 KB
testcase_14 AC 39 ms
53,260 KB
testcase_15 AC 39 ms
51,940 KB
testcase_16 AC 39 ms
52,684 KB
testcase_17 AC 39 ms
53,380 KB
testcase_18 AC 44 ms
58,692 KB
testcase_19 AC 44 ms
59,996 KB
testcase_20 AC 48 ms
62,436 KB
testcase_21 AC 51 ms
64,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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