結果

問題 No.39 桁の数字を入れ替え
ユーザー convexineqconvexineq
提出日時 2020-11-25 07:21:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 187 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 53,852 KB
最終ジャッジ日時 2024-07-23 19:12:27
合計ジャッジ時間 1,701 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,660 KB
testcase_01 AC 38 ms
52,932 KB
testcase_02 AC 38 ms
53,476 KB
testcase_03 AC 38 ms
53,548 KB
testcase_04 AC 41 ms
53,468 KB
testcase_05 AC 38 ms
52,752 KB
testcase_06 AC 37 ms
52,772 KB
testcase_07 AC 38 ms
52,204 KB
testcase_08 WA -
testcase_09 AC 39 ms
52,132 KB
testcase_10 AC 38 ms
53,852 KB
testcase_11 AC 38 ms
52,580 KB
testcase_12 AC 39 ms
52,336 KB
testcase_13 AC 39 ms
52,008 KB
testcase_14 AC 38 ms
52,124 KB
testcase_15 AC 39 ms
51,908 KB
testcase_16 AC 37 ms
53,116 KB
testcase_17 AC 37 ms
52,192 KB
testcase_18 AC 37 ms
52,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = [*input()]
L = len(n)
s = []
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