結果

問題 No.39 桁の数字を入れ替え
ユーザー zazaboonzazaboon
提出日時 2019-04-12 14:55:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 177 bytes
コンパイル時間 787 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 53,964 KB
最終ジャッジ日時 2024-09-14 03:18:35
合計ジャッジ時間 1,882 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,760 KB
testcase_01 AC 38 ms
52,948 KB
testcase_02 AC 39 ms
52,488 KB
testcase_03 AC 38 ms
52,420 KB
testcase_04 AC 38 ms
52,976 KB
testcase_05 AC 39 ms
53,576 KB
testcase_06 AC 39 ms
52,520 KB
testcase_07 AC 39 ms
53,648 KB
testcase_08 AC 38 ms
52,212 KB
testcase_09 AC 40 ms
51,984 KB
testcase_10 AC 39 ms
52,520 KB
testcase_11 AC 39 ms
52,492 KB
testcase_12 AC 40 ms
53,504 KB
testcase_13 AC 39 ms
53,964 KB
testcase_14 AC 37 ms
53,168 KB
testcase_15 AC 39 ms
52,488 KB
testcase_16 AC 38 ms
53,160 KB
testcase_17 AC 39 ms
53,012 KB
testcase_18 AC 39 ms
52,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

o=input()
a=o
for i in range(len(o)):
    for j in range(len(o)):
        s=list(o)
        s[i],s[j] = s[j],s[i]
        s = "".join(s)
        if s>a:
            a=s
print(a)
0