結果

問題 No.2745 String Swap Battle
ユーザー 👑 rin204rin204
提出日時 2024-04-20 14:19:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 768 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 87,208 KB
最終ジャッジ日時 2024-10-12 09:51:45
合計ジャッジ時間 2,538 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
73,088 KB
testcase_01 AC 48 ms
72,996 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 40 ms
59,268 KB
testcase_05 AC 39 ms
58,036 KB
testcase_06 AC 57 ms
75,400 KB
testcase_07 AC 57 ms
75,564 KB
testcase_08 AC 57 ms
75,596 KB
testcase_09 AC 55 ms
75,788 KB
testcase_10 AC 50 ms
70,436 KB
testcase_11 AC 48 ms
66,664 KB
testcase_12 AC 193 ms
87,208 KB
testcase_13 AC 194 ms
86,644 KB
testcase_14 AC 147 ms
86,552 KB
testcase_15 AC 83 ms
76,252 KB
testcase_16 AC 81 ms
76,632 KB
testcase_17 AC 78 ms
76,708 KB
testcase_18 AC 38 ms
52,856 KB
testcase_19 AC 38 ms
53,744 KB
testcase_20 AC 36 ms
52,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = [input() for _ in range(n)]
for i in range(n):
    T = S[i]
    mi = "z"
    m = len(T)
    ind = -1
    for j in range(1, m):
        if T[j - 1] > T[j] and T[j] <= mi:
            mi = T[j]
            ind = j

    if ind == -1:
        change = True
        for j in range(1, m):
            if T[j] == T[j - 1]:
                change = False
                break
        if change:
            T = T[:-2] + T[-1] + T[-2]
        S[i] = T
        continue

    for j in range(n):
        if T[j] > mi:
            T = T[:j] + T[ind] + T[j + 1 : ind] + T[j] + T[ind + 1 :]
            S[i] = T
            break

mi = min(S)
c = S.count(mi)
ans = [0] * n
for i in range(n):
    if S[i] == mi:
        ans[i] = n + 1 - c

print(*ans, sep="\n")
0