結果

問題 No.39 桁の数字を入れ替え
ユーザー convexineqconvexineq
提出日時 2020-11-25 07:22:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 201 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 53,812 KB
最終ジャッジ日時 2024-07-23 19:12:32
合計ジャッジ時間 1,716 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,628 KB
testcase_01 AC 40 ms
53,812 KB
testcase_02 AC 38 ms
53,000 KB
testcase_03 AC 40 ms
52,692 KB
testcase_04 AC 42 ms
52,816 KB
testcase_05 AC 40 ms
52,140 KB
testcase_06 AC 38 ms
52,892 KB
testcase_07 AC 40 ms
52,364 KB
testcase_08 AC 40 ms
53,008 KB
testcase_09 AC 39 ms
52,532 KB
testcase_10 AC 39 ms
52,576 KB
testcase_11 AC 40 ms
52,568 KB
testcase_12 AC 39 ms
53,304 KB
testcase_13 AC 40 ms
52,628 KB
testcase_14 AC 39 ms
52,436 KB
testcase_15 AC 40 ms
52,272 KB
testcase_16 AC 40 ms
52,816 KB
testcase_17 AC 39 ms
52,228 KB
testcase_18 AC 39 ms
51,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = [*input()]
L = len(n)
s = [int("".join(n))]
for i in range(L):
    for j in range(i+1,L):
        n[i],n[j] = n[j],n[i]
        s.append(int("".join(n)))
        n[i],n[j] = n[j],n[i]
print(max(s))
0