結果
問題 | No.39 桁の数字を入れ替え |
ユーザー | nohakai3 |
提出日時 | 2022-10-18 17:47:49 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 256 bytes |
コンパイル時間 | 164 ms |
コンパイル使用メモリ | 82,356 KB |
実行使用メモリ | 54,548 KB |
最終ジャッジ日時 | 2024-06-29 01:11:37 |
合計ジャッジ時間 | 1,435 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
51,584 KB |
testcase_01 | WA | - |
testcase_02 | AC | 33 ms
51,456 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 32 ms
51,584 KB |
testcase_09 | AC | 32 ms
51,456 KB |
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(input()) ans=[] for i in range(1,len(n)): if int(n[0])<int(n[i]): ans.append([i,int(n[i])]) ans.sort(key=lambda x:-x[1]) p=n.copy() if len(ans)==0: n="".join(n) exit(print(n)) n[ans[0][0]],n[0]=p[0],str(ans[0][1]) n="".join(n)