結果

問題 No.39 桁の数字を入れ替え
ユーザー あかりきあかりき
提出日時 2021-02-08 09:58:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 220 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 55,400 KB
最終ジャッジ日時 2024-07-05 06:14:59
合計ジャッジ時間 1,865 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,416 KB
testcase_01 AC 41 ms
54,064 KB
testcase_02 AC 41 ms
55,108 KB
testcase_03 AC 40 ms
54,592 KB
testcase_04 AC 41 ms
54,076 KB
testcase_05 AC 40 ms
55,400 KB
testcase_06 AC 41 ms
54,784 KB
testcase_07 AC 40 ms
53,604 KB
testcase_08 AC 40 ms
54,272 KB
testcase_09 AC 39 ms
53,548 KB
testcase_10 AC 40 ms
53,884 KB
testcase_11 AC 41 ms
53,532 KB
testcase_12 AC 40 ms
54,116 KB
testcase_13 AC 40 ms
53,532 KB
testcase_14 AC 40 ms
54,972 KB
testcase_15 AC 40 ms
54,732 KB
testcase_16 AC 42 ms
53,852 KB
testcase_17 AC 42 ms
53,572 KB
testcase_18 AC 41 ms
53,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
n=list(input())
ans=[]
ans.append(int(''.join(n)))
for i in range(len(n)):
  for j in range(len(n)):
    l=copy.copy(n)
    if i!=j:
      l[i],l[j]=l[j],l[i]
      ans.append(int(''.join(l)))
print(max(ans))
0