結果
問題 | No.39 桁の数字を入れ替え |
ユーザー | Yuta123456 |
提出日時 | 2020-05-21 17:29:20 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 444 bytes |
コンパイル時間 | 288 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-02 00:05:40 |
合計ジャッジ時間 | 1,476 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 31 ms
10,752 KB |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
n = list(map(int, input())) now_max_i = len(n) - 1 max_num = max(n, key=lambda x: int(x)) flag = False i = 0 while n[i] == max_num: i += 1 if i == len(n): print("".join(map(str, n))) exit() swap_index = i now_max_i = len(n)-1 for i in range(len(n)-1,-1,-1): if n[now_max_i] < n[i]: now_max_i = i if n[now_max_i] < n[swap_index]: n[now_max_i], n[swap_index] = n[swap_index], n[now_max_i] print("".join(map(str, n)))