結果

問題 No.927 Second Permutation
ユーザー MaboyMaboy
提出日時 2021-06-28 05:55:47
言語 Swift
(5.10.0)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 1,307 ms
コンパイル使用メモリ 127,832 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-06-25 11:59:28
合計ジャッジ時間 2,923 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,344 KB
testcase_01 AC 8 ms
9,600 KB
testcase_02 AC 9 ms
9,344 KB
testcase_03 AC 9 ms
9,472 KB
testcase_04 AC 9 ms
9,472 KB
testcase_05 AC 8 ms
9,472 KB
testcase_06 AC 9 ms
9,344 KB
testcase_07 AC 9 ms
9,472 KB
testcase_08 AC 21 ms
10,608 KB
testcase_09 AC 9 ms
9,344 KB
testcase_10 AC 28 ms
11,088 KB
testcase_11 AC 40 ms
12,416 KB
testcase_12 AC 23 ms
10,872 KB
testcase_13 AC 11 ms
9,728 KB
testcase_14 AC 29 ms
11,404 KB
testcase_15 AC 23 ms
10,852 KB
testcase_16 AC 44 ms
12,672 KB
testcase_17 AC 43 ms
12,672 KB
testcase_18 AC 44 ms
12,800 KB
testcase_19 AC 44 ms
12,928 KB
testcase_20 AC 44 ms
12,800 KB
testcase_21 AC 43 ms
12,680 KB
testcase_22 AC 43 ms
12,928 KB
testcase_23 AC 43 ms
12,680 KB
testcase_24 AC 22 ms
11,904 KB
testcase_25 AC 18 ms
10,752 KB
testcase_26 AC 15 ms
10,320 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

var l = Array(String(readLine()!)).sorted(by: >)
var s = Set(l)
if s.count < 2 || (l.count == 2 && l.contains("0")){
    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