結果

問題 No.39 桁の数字を入れ替え
ユーザー kohei2019kohei2019
提出日時 2021-02-18 15:27:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 216 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 55,092 KB
最終ジャッジ日時 2024-09-14 21:41:24
合計ジャッジ時間 1,986 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
55,092 KB
testcase_01 AC 49 ms
54,248 KB
testcase_02 AC 48 ms
53,504 KB
testcase_03 AC 46 ms
53,892 KB
testcase_04 AC 44 ms
53,568 KB
testcase_05 AC 45 ms
53,440 KB
testcase_06 AC 42 ms
53,708 KB
testcase_07 AC 42 ms
54,092 KB
testcase_08 AC 44 ms
54,516 KB
testcase_09 AC 42 ms
54,700 KB
testcase_10 AC 42 ms
53,780 KB
testcase_11 AC 42 ms
54,056 KB
testcase_12 AC 42 ms
54,456 KB
testcase_13 AC 42 ms
54,384 KB
testcase_14 AC 41 ms
53,692 KB
testcase_15 AC 43 ms
54,336 KB
testcase_16 AC 43 ms
54,120 KB
testcase_17 AC 43 ms
54,256 KB
testcase_18 AC 42 ms
54,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
N = list(input())
ans = int(''.join(N))
for i in range(len(N)-1):
    for j in range(len(N)):
        N1 = copy.copy(N)
        N1[i],N1[j] = N1[j],N1[i]
        ans = max(ans,int(''.join(N1)))
print(ans)
0