結果
問題 | No.145 yukiover |
ユーザー | maspy |
提出日時 | 2020-03-03 23:25:07 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 236 ms / 5,000 ms |
コード長 | 900 bytes |
コンパイル時間 | 119 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 14,116 KB |
最終ジャッジ日時 | 2024-10-13 23:22:37 |
合計ジャッジ時間 | 2,613 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,624 KB |
testcase_01 | AC | 26 ms
10,624 KB |
testcase_02 | AC | 29 ms
10,624 KB |
testcase_03 | AC | 29 ms
10,752 KB |
testcase_04 | AC | 28 ms
10,624 KB |
testcase_05 | AC | 26 ms
10,624 KB |
testcase_06 | AC | 27 ms
10,624 KB |
testcase_07 | AC | 27 ms
10,752 KB |
testcase_08 | AC | 28 ms
10,624 KB |
testcase_09 | AC | 28 ms
10,624 KB |
testcase_10 | AC | 29 ms
10,624 KB |
testcase_11 | AC | 33 ms
12,288 KB |
testcase_12 | AC | 61 ms
14,116 KB |
testcase_13 | AC | 46 ms
13,388 KB |
testcase_14 | AC | 91 ms
13,120 KB |
testcase_15 | AC | 128 ms
13,056 KB |
testcase_16 | AC | 236 ms
12,544 KB |
testcase_17 | AC | 85 ms
13,624 KB |
testcase_18 | AC | 70 ms
13,500 KB |
testcase_19 | AC | 81 ms
13,624 KB |
testcase_20 | AC | 76 ms
13,368 KB |
testcase_21 | AC | 59 ms
13,376 KB |
testcase_22 | AC | 70 ms
13,372 KB |
testcase_23 | AC | 66 ms
12,860 KB |
ソースコード
#!/usr/bin/env python3 # %% import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines from collections import Counter # %% N = int(readline()) S = read().rstrip().decode() # %% def test(n, alphabets, word): """alphabetsを使ってwordより真に大きいものをn個つくれる""" if n <= 0: return True if not word: return len(alphabets) >= n w = word[0] while alphabets and alphabets[-1] > w: alphabets.pop() n -= 1 if n <= 0: return True if len(alphabets) < n: return False if alphabets[-n] < w: return False return test(n, alphabets[:-n], word[1:]) # %% A = sorted(S) left = 0 right = N + 1 while left + 1 < right: x = (left + right) // 2 if test(x, A[:], 'yuki'): left = x else: right = x # %% print(left)