結果

問題 No.2745 String Swap Battle
ユーザー 👑 rin204rin204
提出日時 2024-04-20 14:26:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 818 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 86,656 KB
最終ジャッジ日時 2024-10-12 09:59:31
合計ジャッジ時間 2,539 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
75,848 KB
testcase_01 AC 66 ms
75,520 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 43 ms
58,112 KB
testcase_05 AC 42 ms
58,752 KB
testcase_06 AC 62 ms
75,740 KB
testcase_07 AC 60 ms
75,596 KB
testcase_08 AC 65 ms
75,648 KB
testcase_09 AC 62 ms
75,520 KB
testcase_10 AC 54 ms
70,016 KB
testcase_11 AC 52 ms
66,560 KB
testcase_12 AC 156 ms
86,656 KB
testcase_13 AC 154 ms
86,656 KB
testcase_14 AC 149 ms
86,652 KB
testcase_15 AC 87 ms
76,416 KB
testcase_16 AC 89 ms
76,500 KB
testcase_17 AC 84 ms
76,160 KB
testcase_18 AC 38 ms
52,096 KB
testcase_19 AC 38 ms
52,608 KB
testcase_20 AC 38 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = [input() for _ in range(n)]
for i in range(n):
    T = S[i]
    mi = chr(200)
    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
        elif T[j] == mi:
            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(m):
        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