結果
問題 | No.490 yukiソート |
ユーザー | fmhr |
提出日時 | 2017-03-10 22:41:25 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 529 bytes |
コンパイル時間 | 13,038 ms |
コンパイル使用メモリ | 223,812 KB |
実行使用メモリ | 14,016 KB |
最終ジャッジ日時 | 2024-06-24 10:09:55 |
合計ジャッジ時間 | 16,277 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,288 KB |
testcase_01 | AC | 1 ms
6,812 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
package main import "fmt" func main() { var n int fmt.Scan(&n) a := make([]int, n) for i := 0; i < n; i++ { fmt.Scan(&a[i]) } for i := 0; i < 2*n-3; i++ { for p := 0; p < i; p++ { for q := p + 1; q < n; q++ { // log.Println(i, p, q) if p+q == 1 { if a[p] > a[q] { // log.Println(a[p], a[q]) a[p], a[q] = a[q], a[p] } } } } } // sort.Ints(a) for i, b := range a { fmt.Print(b) if i < len(a)-1 { fmt.Print(" ") } else if i == len(a)-1 { fmt.Print("\n") } } }