結果
問題 | No.693 square1001 and Permutation 2 |
ユーザー | tsuchinaga |
提出日時 | 2019-02-27 15:03:41 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 393 bytes |
コンパイル時間 | 12,927 ms |
コンパイル使用メモリ | 223,568 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-23 05:10:48 |
合計ジャッジ時間 | 10,963 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
package main import "fmt" func main() { var n, a, c int _, _ = fmt.Scan(&n) nums := make([]int, n) for range nums { _, _ = fmt.Scan(&a) nums[a-1]++ } fmt.Println(nums) for i := 0; i < n-1; i++ { v := nums[i] if v > 1 { nums[i], nums[i+1], c = 1, nums[i+1]+(v-1), c+(v-1) } else if v < 1 { nums[i], nums[i+1], c = 1, nums[i+1]+(v-1), c-(v-1) } } fmt.Println(c) }