結果

問題 No.927 Second Permutation
ユーザー MaboyMaboy
提出日時 2021-06-28 06:08:42
言語 Swift
(5.10.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 1,205 ms
コンパイル使用メモリ 129,316 KB
実行使用メモリ 16,296 KB
最終ジャッジ日時 2024-06-25 11:59:35
合計ジャッジ時間 2,877 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,344 KB
testcase_01 AC 8 ms
9,472 KB
testcase_02 AC 8 ms
9,472 KB
testcase_03 AC 8 ms
9,472 KB
testcase_04 AC 8 ms
9,472 KB
testcase_05 AC 8 ms
9,344 KB
testcase_06 AC 9 ms
9,472 KB
testcase_07 AC 8 ms
9,344 KB
testcase_08 AC 20 ms
10,992 KB
testcase_09 AC 9 ms
9,344 KB
testcase_10 AC 28 ms
12,112 KB
testcase_11 AC 41 ms
13,552 KB
testcase_12 AC 24 ms
11,380 KB
testcase_13 AC 11 ms
9,856 KB
testcase_14 AC 30 ms
12,168 KB
testcase_15 AC 23 ms
11,240 KB
testcase_16 AC 44 ms
16,176 KB
testcase_17 AC 45 ms
16,296 KB
testcase_18 AC 45 ms
16,296 KB
testcase_19 AC 45 ms
16,172 KB
testcase_20 AC 45 ms
16,168 KB
testcase_21 AC 44 ms
16,296 KB
testcase_22 AC 45 ms
16,180 KB
testcase_23 AC 45 ms
16,296 KB
testcase_24 AC 23 ms
12,484 KB
testcase_25 AC 18 ms
11,636 KB
testcase_26 AC 16 ms
11,088 KB
testcase_27 AC 15 ms
10,668 KB
testcase_28 AC 22 ms
12,408 KB
testcase_29 AC 20 ms
11,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

var l = Array(String(readLine()!)).sorted(by: >)
var s = Set(l)
var t = l
t.removeAll(where: {$0 == "0"})
if s.count < 2 || t.count == 1{
    print(-1)
}else{
    let e = l[l.count - 1]
    let f = l.firstIndex(of: e)!
    (l[f - 1],l[f]) = (l[f],l[f - 1])
    print(l.map{String($0)}.joined())
}
0