結果

問題 No.39 桁の数字を入れ替え
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-01 10:58:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 190 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 53,304 KB
最終ジャッジ日時 2024-10-09 22:18:06
合計ジャッジ時間 1,745 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,112 KB
testcase_01 AC 37 ms
53,288 KB
testcase_02 AC 36 ms
52,768 KB
testcase_03 AC 37 ms
52,208 KB
testcase_04 AC 37 ms
52,996 KB
testcase_05 AC 36 ms
52,688 KB
testcase_06 AC 36 ms
52,208 KB
testcase_07 AC 35 ms
53,148 KB
testcase_08 AC 36 ms
53,304 KB
testcase_09 AC 37 ms
53,216 KB
testcase_10 AC 36 ms
51,832 KB
testcase_11 AC 37 ms
52,416 KB
testcase_12 AC 36 ms
52,228 KB
testcase_13 AC 36 ms
52,428 KB
testcase_14 AC 36 ms
52,796 KB
testcase_15 AC 36 ms
51,868 KB
testcase_16 AC 37 ms
53,296 KB
testcase_17 AC 36 ms
52,068 KB
testcase_18 AC 37 ms
52,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = list(input())

ans = int("".join(N))
for i in range(len(N)):
    for j in range(i):
        N2 = N[:]
        N2[i],N2[j] = N2[j],N2[i]
        ans = max(ans,int("".join(N2)))
print(ans)
0