結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー yukirinyukirin
提出日時 2016-01-19 22:06:24
言語 Go
(1.22.1)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 1,040 bytes
コンパイル時間 11,153 ms
コンパイル使用メモリ 236,368 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-19 04:07:32
合計ジャッジ時間 11,802 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"sort"
	"strconv"
)

var sc = bufio.NewScanner(os.Stdin)

var rdr = bufio.NewReaderSize(os.Stdin, 1000000)

func nextLine() string {
	sc.Scan()
	return sc.Text()
}

func nextInt() int {
	i, _ := strconv.Atoi(nextLine())
	return i
}

func nextInt64() int64 {
	i, _ := strconv.ParseInt(nextLine(), 10, 64)
	return i
}

func nextUint64() uint64 {
	i, _ := strconv.ParseUint(nextLine(), 10, 64)
	return i
}

func nextFloat() float64 {
	f, _ := strconv.ParseFloat(nextLine(), 64)
	return f
}

func readLine() string {
	buf := make([]byte, 0, 1000000)
	for {
		l, p, e := rdr.ReadLine()
		if e != nil {
			panic(e)
		}
		buf = append(buf, l...)
		if !p {
			break
		}
	}
	return string(buf)
}

type bytes []byte

func (b bytes) Len() int {
	return len(b)
}

func (b bytes) Less(i, j int) bool {
	return b[i] > b[j]
}

func (b bytes) Swap(i, j int) {
	b[j], b[i] = b[i], b[j]
	return
}

func main() {
	sc.Split(bufio.ScanWords)
	n := readLine()
	b := bytes(n)

	sort.Sort(b)
	fmt.Println(string(b))
}
0