結果

問題 No.39 桁の数字を入れ替え
ユーザー ronpooronpoo
提出日時 2023-08-23 08:43:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 319 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 53,748 KB
最終ジャッジ日時 2024-06-01 06:23:17
合計ジャッジ時間 1,782 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,104 KB
testcase_01 AC 40 ms
53,336 KB
testcase_02 AC 39 ms
53,044 KB
testcase_03 AC 40 ms
52,476 KB
testcase_04 AC 39 ms
53,356 KB
testcase_05 AC 39 ms
53,320 KB
testcase_06 AC 40 ms
52,584 KB
testcase_07 AC 40 ms
53,152 KB
testcase_08 AC 39 ms
53,352 KB
testcase_09 AC 39 ms
53,624 KB
testcase_10 AC 39 ms
52,616 KB
testcase_11 AC 39 ms
53,508 KB
testcase_12 AC 40 ms
52,612 KB
testcase_13 AC 39 ms
52,948 KB
testcase_14 AC 40 ms
52,948 KB
testcase_15 AC 39 ms
51,756 KB
testcase_16 AC 39 ms
53,748 KB
testcase_17 AC 40 ms
53,356 KB
testcase_18 AC 41 ms
52,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

S = str(N)
L = len(S)
s = list(S)
a = [int(v) for v in S]
a.sort(reverse=True)
idx = 0
for i in range(L):
    if int(S[i]) != a[i]:
        idx = i
        break
for j in range(L-1, -1, -1):
    if a[idx] == int(S[j]):
        s[idx], s[j] = s[j], s[idx]
        break
ans = ''.join(s)
print(int(ans))
0