結果

問題 No.501 穴と文字列
ユーザー yuppe19 😺yuppe19 😺
提出日時 2017-04-07 22:33:41
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 63 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-07-16 01:03:08
合計ジャッジ時間 1,088 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 24 ms
7,168 KB
testcase_02 AC 10 ms
6,272 KB
testcase_03 AC 10 ms
6,400 KB
testcase_04 AC 10 ms
6,272 KB
testcase_05 AC 9 ms
6,272 KB
testcase_06 WA -
testcase_07 AC 10 ms
6,272 KB
testcase_08 AC 10 ms
6,272 KB
testcase_09 AC 10 ms
6,272 KB
testcase_10 WA -
testcase_11 AC 9 ms
6,272 KB
testcase_12 AC 10 ms
6,144 KB
testcase_13 AC 10 ms
6,272 KB
testcase_14 WA -
testcase_15 AC 10 ms
6,400 KB
testcase_16 AC 9 ms
6,272 KB
testcase_17 AC 10 ms
6,272 KB
testcase_18 AC 20 ms
7,168 KB
testcase_19 AC 33 ms
7,296 KB
testcase_20 WA -
testcase_21 AC 30 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
n, d = map(int, raw_input().split())
v = [0] * n

for loop in xrange(2):
    for i in reversed(xrange(n)):
        if d > 0:
            v[i] += 1
            d -= 1
res = ''.join('CAB'[x] for x in v)
print res
0