結果

問題 No.501 穴と文字列
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-05 13:56:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 67,556 KB
最終ジャッジ日時 2024-12-21 18:05:00
合計ジャッジ時間 2,743 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
67,556 KB
testcase_01 AC 46 ms
67,472 KB
testcase_02 AC 33 ms
52,136 KB
testcase_03 AC 33 ms
53,696 KB
testcase_04 AC 33 ms
53,192 KB
testcase_05 AC 33 ms
52,404 KB
testcase_06 AC 34 ms
52,544 KB
testcase_07 AC 33 ms
52,204 KB
testcase_08 AC 34 ms
52,920 KB
testcase_09 AC 35 ms
53,832 KB
testcase_10 AC 34 ms
53,760 KB
testcase_11 AC 37 ms
52,208 KB
testcase_12 AC 36 ms
52,748 KB
testcase_13 AC 36 ms
52,308 KB
testcase_14 AC 35 ms
52,148 KB
testcase_15 AC 33 ms
52,064 KB
testcase_16 AC 34 ms
52,932 KB
testcase_17 AC 34 ms
51,880 KB
testcase_18 AC 38 ms
59,972 KB
testcase_19 AC 37 ms
59,100 KB
testcase_20 AC 39 ms
62,748 KB
testcase_21 AC 44 ms
64,808 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