結果

問題 No.1609 String Division Machine
ユーザー 👑 rin204rin204
提出日時 2022-01-18 01:36:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 597 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 87,844 KB
最終ジャッジ日時 2024-05-02 19:08:20
合計ジャッジ時間 4,573 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 40 ms
51,584 KB
testcase_05 AC 41 ms
51,584 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 WA -
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 43 ms
51,712 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 42 ms
52,096 KB
testcase_12 AC 41 ms
51,968 KB
testcase_13 AC 42 ms
51,712 KB
testcase_14 AC 46 ms
57,216 KB
testcase_15 AC 45 ms
51,968 KB
testcase_16 AC 42 ms
51,584 KB
testcase_17 AC 42 ms
52,096 KB
testcase_18 AC 41 ms
51,968 KB
testcase_19 AC 45 ms
57,216 KB
testcase_20 AC 46 ms
57,216 KB
testcase_21 AC 41 ms
51,584 KB
testcase_22 AC 45 ms
57,344 KB
testcase_23 AC 54 ms
60,800 KB
testcase_24 WA -
testcase_25 AC 54 ms
61,440 KB
testcase_26 AC 54 ms
61,056 KB
testcase_27 AC 54 ms
60,800 KB
testcase_28 AC 55 ms
60,672 KB
testcase_29 WA -
testcase_30 AC 54 ms
60,800 KB
testcase_31 AC 55 ms
61,696 KB
testcase_32 AC 55 ms
61,184 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 88 ms
81,920 KB
testcase_39 AC 88 ms
82,048 KB
testcase_40 AC 139 ms
87,844 KB
testcase_41 AC 90 ms
82,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
n = len(S)

used = [False] * n
T = ["?"] * n
for i in range(n):
    if S[i] == "?":
        used[i] = True
    else:
        T[i] = S[i]
        
cnt = [0] * n
for i in range(1, 27):
    max_ = "a"
    br = True
    for j in range(n - 1, -1, -1):
        if used[j]:
            continue
        elif S[j] >= max_:
            max_ = S[j]
            used[j] = True
            cnt[j] = i
            br = False
    if br:
        break

ma = i - 1
t = "a"
for j in range(n - 1, -1, -1):
    if T[j] == "?":
        T[j] = t
    elif cnt[j] == ma:
        t = T[j]
print(*T, sep="")


0