結果

問題 No.145 yukiover
ユーザー kimiyukikimiyuki
提出日時 2016-12-27 18:36:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 750 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-05-08 20:36:41
合計ジャッジ時間 3,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 62 ms
11,008 KB
testcase_12 AC 143 ms
11,008 KB
testcase_13 AC 132 ms
11,008 KB
testcase_14 AC 157 ms
11,008 KB
testcase_15 AC 150 ms
11,136 KB
testcase_16 AC 154 ms
11,008 KB
testcase_17 AC 150 ms
11,008 KB
testcase_18 AC 146 ms
11,008 KB
testcase_19 AC 144 ms
11,008 KB
testcase_20 AC 144 ms
11,008 KB
testcase_21 AC 146 ms
11,008 KB
testcase_22 AC 145 ms
11,008 KB
testcase_23 AC 84 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import collections
# abcdefghijklmnopqrstuvwxyz
#         4 3         2   1
_ = int(input())
cnt = collections.Counter()
for c in input():
    cnt[c] += 1
def take(c, z=None):
    if z is None:
        z = c
    while c <= z:
        if cnt[c]:
            cnt[c] -= 1
            return c
        c = chr(ord(c) + 1)
    return ''
def construct(s):
    acc = ''
    for c in s:
        if c.islower():
            acc += take(c)
        elif c.isupper():
            acc += take(c.lower(), 'z')
    if len(acc) < len(s):
        for c in acc:
            cnt[c] += 1
        return False
    else:
        return True
ans = 0
for s in [ 'yukiA', 'yukJ', 'yuL', 'yV', 'Z' ]:
    while construct(s):
        ans += 1
print(ans)
0