結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | nebukuro09 |
提出日時 | 2016-10-13 15:50:36 |
言語 | D (dmd 2.106.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 535 bytes |
コンパイル時間 | 2,327 ms |
コンパイル使用メモリ | 151,744 KB |
実行使用メモリ | 12,880 KB |
最終ジャッジ日時 | 2024-06-12 04:33:38 |
合計ジャッジ時間 | 6,878 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 207 ms
10,584 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 206 ms
10,548 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 203 ms
10,364 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 176 ms
6,800 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 174 ms
9,944 KB |
testcase_16 | AC | 202 ms
10,416 KB |
testcase_17 | AC | 199 ms
10,548 KB |
testcase_18 | AC | 198 ms
10,420 KB |
testcase_19 | AC | 205 ms
10,492 KB |
testcase_20 | AC | 205 ms
10,364 KB |
testcase_21 | AC | 204 ms
10,360 KB |
testcase_22 | AC | 177 ms
6,964 KB |
testcase_23 | AC | 192 ms
10,228 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
ソースコード
import std.stdio; import std.array; import std.string; import std.conv; import std.algorithm; void main() { int N = to!int(chomp(readln())); int[] L = array(map!(to!int)(split(readln()))); int K = to!int(chomp(readln())); real high = 1e9; real low = 0.0; real middle; int s; for (int i = 0; i < 80; i++) { s = 0; middle = (high+low)/2.0; for (int j = 0; j < N; j++) s += to!int(to!real(L[j])/middle); if (s >= K) low = middle; else high = middle; } writefln("%.9f", high); }