結果

問題 No.145 yukiover
ユーザー lllllll88938494lllllll88938494
提出日時 2022-06-02 16:11:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 363 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 81,792 KB
最終ジャッジ日時 2024-09-21 02:01:05
合計ジャッジ時間 3,612 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 39 ms
52,864 KB
testcase_07 WA -
testcase_08 AC 40 ms
52,480 KB
testcase_09 AC 38 ms
52,480 KB
testcase_10 WA -
testcase_11 AC 50 ms
66,944 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 142 ms
81,024 KB
testcase_16 AC 87 ms
81,792 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush 

n=int(input())
s=input()
y='yuki'
h=[]
ans=0

for i in s:
    heappush(h,-ord(i))

f=1
while len(h) > 0 and f == 1:
    f=0
    for i in range(4):
        if len(h) == 0:
            break
        t = heappop(h)
        if -t > ord(y[i]):
            f=1
            ans += 1
            break
            
print(ans)
        
0