結果

問題 No.305 鍵(2)
ユーザー hama_duhama_du
提出日時 2015-11-27 22:40:28
言語 Go
(1.22.1)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 14,856 ms
コンパイル使用メモリ 222,668 KB
実行使用メモリ 25,476 KB
平均クエリ数 92.62
最終ジャッジ日時 2024-07-16 20:47:23
合計ジャッジ時間 16,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
24,580 KB
testcase_01 AC 27 ms
24,836 KB
testcase_02 AC 27 ms
24,836 KB
testcase_03 AC 27 ms
24,580 KB
testcase_04 AC 26 ms
24,836 KB
testcase_05 AC 28 ms
25,476 KB
testcase_06 AC 23 ms
25,092 KB
testcase_07 AC 28 ms
25,220 KB
testcase_08 AC 27 ms
25,220 KB
testcase_09 AC 27 ms
25,076 KB
testcase_10 AC 28 ms
24,836 KB
testcase_11 AC 27 ms
24,836 KB
testcase_12 AC 27 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main
import "fmt"

func main()  {
	ans := ""
	for i := 0 ; i <= 9 ; i++ {
		best := -1
		bestD := -1
		for d := 0 ; d <= 9 ; d++ {
			query := ""
			for j := 0 ; j <= 9 ; j++ {
				if i == j {
					query += fmt.Sprintf("%d", d)
				} else {
					query += "0"
				}
			}
			fmt.Println(query)

			num := 0
			res := ""
			fmt.Scan(&num, &res)
			if num == 10 {
				return
			}
			if best < num {
				best = num
				bestD = d
			}
		}
		ans += fmt.Sprintf("%d", bestD)
	}

	num := 0
	res := ""
	fmt.Println(ans)
	fmt.Scan(&num, &res)
}
0