結果

問題 No.39 桁の数字を入れ替え
ユーザー dangodango
提出日時 2023-06-14 16:16:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 126 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 53,428 KB
最終ジャッジ日時 2024-06-23 00:32:49
合計ジャッジ時間 1,609 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,896 KB
testcase_01 AC 34 ms
52,656 KB
testcase_02 AC 32 ms
52,464 KB
testcase_03 AC 33 ms
52,196 KB
testcase_04 AC 35 ms
52,544 KB
testcase_05 AC 36 ms
52,456 KB
testcase_06 AC 35 ms
52,536 KB
testcase_07 AC 35 ms
52,892 KB
testcase_08 AC 33 ms
52,588 KB
testcase_09 AC 35 ms
52,700 KB
testcase_10 AC 31 ms
52,624 KB
testcase_11 AC 32 ms
52,440 KB
testcase_12 AC 33 ms
52,012 KB
testcase_13 AC 32 ms
53,428 KB
testcase_14 AC 32 ms
52,176 KB
testcase_15 AC 31 ms
53,192 KB
testcase_16 AC 32 ms
52,724 KB
testcase_17 AC 31 ms
53,096 KB
testcase_18 AC 32 ms
52,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
print(max([N]+[max([N[:i]+N[j]+N[i+1:j]+N[i]+N[j+1:] for j in range(i + 1, len(N))]) for i in range(len(N) - 1)]))
0