結果

問題 No.39 桁の数字を入れ替え
ユーザー Yuta123456
提出日時 2020-05-21 17:35:01
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 5,000 ms
コード長 241 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-02 00:05:42
合計ジャッジ時間 1,360 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

n = list(map(int, input()))
ans = int("".join(map(str, n)))
for i in range(len(n)):
    for j in range(i+1,len(n)):
        n[i], n[j] = n[j], n[i]
        ans = max(ans, int("".join(map(str, n))))
        n[i], n[j] = n[j], n[i]
print(ans)
0