結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー ABKZABKZ
提出日時 2023-01-28 15:45:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 193 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 75,264 KB
最終ジャッジ日時 2024-06-28 19:06:01
合計ジャッジ時間 868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = list(map(int, [*input()]))

head = max(N)
idx = N.index(max(N))
N[0], N[idx] = N[idx], N[0]
N.pop(0)

idx = N.index(max(N))
N[0], N[idx] = N[idx], N[0]


print(''.join(map(str, [head]+N)))
0