結果

問題 No.39 桁の数字を入れ替え
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-05-04 17:21:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 158 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 53,288 KB
最終ジャッジ日時 2024-10-02 06:56:51
合計ジャッジ時間 1,603 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,336 KB
testcase_01 AC 38 ms
52,960 KB
testcase_02 AC 38 ms
53,248 KB
testcase_03 AC 36 ms
52,772 KB
testcase_04 AC 36 ms
52,940 KB
testcase_05 AC 36 ms
52,228 KB
testcase_06 AC 36 ms
53,288 KB
testcase_07 AC 36 ms
52,384 KB
testcase_08 AC 37 ms
52,672 KB
testcase_09 AC 36 ms
52,376 KB
testcase_10 AC 39 ms
52,408 KB
testcase_11 AC 37 ms
51,884 KB
testcase_12 AC 36 ms
52,340 KB
testcase_13 AC 36 ms
52,152 KB
testcase_14 AC 37 ms
52,180 KB
testcase_15 AC 36 ms
52,932 KB
testcase_16 AC 37 ms
52,408 KB
testcase_17 AC 37 ms
52,088 KB
testcase_18 AC 36 ms
53,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
ans = int(s)
for j in range(len(s)):
    for i in range(j):
        ans = max(ans, int(s[:i] + s[j] +  s[i + 1:j] + s[i] + s[j + 1:]))
print(ans)
0