結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | yukirin |
提出日時 | 2016-01-19 22:09:16 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 1,031 bytes |
コンパイル時間 | 11,318 ms |
コンパイル使用メモリ | 239,320 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-10 20:45:11 |
合計ジャッジ時間 | 11,753 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 6 ms
6,820 KB |
testcase_03 | AC | 5 ms
6,820 KB |
ソースコード
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) b := bytes(readLine()) sort.Sort(b) fmt.Println(string(b)) }