結果
問題 | No.305 鍵(2) |
ユーザー | tsuchinaga |
提出日時 | 2019-04-12 09:56:22 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,179 bytes |
コンパイル時間 | 12,195 ms |
コンパイル使用メモリ | 226,012 KB |
実行使用メモリ | 25,476 KB |
平均クエリ数 | 19.92 |
最終ジャッジ日時 | 2024-07-16 17:07:53 |
合計ジャッジ時間 | 12,401 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
24,580 KB |
testcase_01 | AC | 20 ms
24,964 KB |
testcase_02 | AC | 21 ms
25,064 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 19 ms
25,220 KB |
testcase_06 | AC | 18 ms
24,964 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
package main import ( "fmt" "strconv" "strings" ) func main() { var x int var s string // 全部0~全部9を試して、各数字の個数を探す nums := make([]int, 10) for i := 0; i <= 9; i++ { fmt.Println(strings.Repeat(strconv.Itoa(i), 10)) _, _ = fmt.Scan(&x, &s) if s == "unlocked" { return } nums[i] = x } // fmt.Println(nums) // 1番当たりに近いのを取り出しておく max := nums[0] ans := make([]int, 10) for i := 1; i <= 9; i++ { if max < nums[i] { max = nums[i] for j := range ans { ans[j] = i } } } // fmt.Println(ans) // 先頭から変えながらmaxを増えるよう調整する for i := 0; i <= 9; i++ { for j, a := range nums { if a == 0 { continue } tmp := make([]int, 10) copy(tmp, ans) tmp[i] = j print305(tmp) _, _ = fmt.Scan(&x, &s) if s == "unlocked" { return } if max > x { // 減ったなら、元のが正解 break } else if max < x { // 増えたなら、選んだのが正解 ans[i] = j break } } max++ nums[ans[i]]-- } } func print305(nums []int) { for _, n := range nums { fmt.Print(n) } fmt.Println() }