結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | plainbanana |
提出日時 | 2019-03-15 02:07:27 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,227 bytes |
コンパイル時間 | 14,469 ms |
コンパイル使用メモリ | 226,628 KB |
実行使用メモリ | 9,796 KB |
最終ジャッジ日時 | 2024-06-27 16:14:55 |
合計ジャッジ時間 | 53,715 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,287 ms
8,060 KB |
testcase_01 | WA | - |
testcase_02 | AC | 788 ms
7,824 KB |
testcase_03 | AC | 1,499 ms
7,948 KB |
testcase_04 | AC | 1,344 ms
7,944 KB |
testcase_05 | AC | 1,347 ms
7,944 KB |
testcase_06 | AC | 1,347 ms
8,064 KB |
testcase_07 | AC | 2,112 ms
8,056 KB |
testcase_08 | AC | 2,085 ms
8,060 KB |
testcase_09 | AC | 2,118 ms
8,044 KB |
testcase_10 | AC | 1,222 ms
8,064 KB |
testcase_11 | AC | 1,278 ms
7,940 KB |
testcase_12 | AC | 1,175 ms
9,580 KB |
testcase_13 | AC | 1,903 ms
8,080 KB |
testcase_14 | AC | 1,980 ms
8,072 KB |
testcase_15 | AC | 1,768 ms
7,924 KB |
testcase_16 | AC | 1,386 ms
8,056 KB |
testcase_17 | AC | 1,353 ms
8,056 KB |
testcase_18 | AC | 1,348 ms
8,060 KB |
testcase_19 | AC | 2,088 ms
8,060 KB |
testcase_20 | AC | 2,098 ms
8,060 KB |
testcase_21 | AC | 2,087 ms
8,056 KB |
testcase_22 | AC | 1,215 ms
9,796 KB |
testcase_23 | AC | 1,302 ms
8,036 KB |
testcase_24 | WA | - |
testcase_25 | AC | 42 ms
6,940 KB |
testcase_26 | WA | - |
testcase_27 | AC | 11 ms
6,940 KB |
testcase_28 | AC | 334 ms
6,940 KB |
testcase_29 | AC | 165 ms
6,944 KB |
testcase_30 | AC | 44 ms
6,940 KB |
ソースコード
package main import ( "bufio" "fmt" "os" ) var sc = bufio.NewScanner(os.Stdin) // 任意の要素数の文字列を読み込んでスライスで返す func scanStrings(len int) (strings []string) { var str string for i := 0; i < len; i++ { fmt.Scanf("%s", &str) strings = append(strings, str) } return } // 任意の要素数の配列を読み込んでスライスで返す func scanNums(len int) (nums []int) { var num int for i := 0; i < len; i++ { fmt.Scan(&num) nums = append(nums, num) } return } func reverse(s string) string { runes := []rune(s) for i, j := 0, len(runes)-1; i < j; i, j = i+1, j-1 { runes[i], runes[j] = runes[j], runes[i] } return string(runes) } func flag(mid float64, k int, ll []int) bool { sum := 0 for _, v := range ll { sum += int(float64(v) / mid) } // fmt.Println("sum:", sum) if sum >= k { return true } return false } func main() { n := scanNums(1)[0] ll := scanNums(n) k := scanNums(1)[0] l := 0.0 r := 1e10 for i := 0; i < 100 && r-l > 1e-10; i++ { mid := (r + l) / 2.0 if flag(mid, k, ll) { l = mid // fmt.Println("true mid:", mid) } else { r = mid } } // fmt.Println("n,l,k,ll", n, l, k, ll) fmt.Printf("%f\n", l) }