結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | 👑 hos.lyric |
提出日時 | 2014-11-25 04:59:32 |
言語 | D (dmd 2.106.1) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,115 bytes |
コンパイル時間 | 3,628 ms |
コンパイル使用メモリ | 165,888 KB |
実行使用メモリ | 11,036 KB |
最終ジャッジ日時 | 2024-06-12 01:39:33 |
合計ジャッジ時間 | 11,148 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 323 ms
11,036 KB |
testcase_01 | WA | - |
testcase_02 | AC | 135 ms
5,744 KB |
testcase_03 | AC | 260 ms
9,024 KB |
testcase_04 | AC | 338 ms
10,480 KB |
testcase_05 | AC | 348 ms
10,480 KB |
testcase_06 | AC | 310 ms
10,484 KB |
testcase_07 | AC | 366 ms
10,816 KB |
testcase_08 | AC | 379 ms
10,816 KB |
testcase_09 | AC | 315 ms
10,820 KB |
testcase_10 | AC | 309 ms
9,788 KB |
testcase_11 | AC | 325 ms
10,136 KB |
testcase_12 | AC | 270 ms
9,636 KB |
testcase_13 | AC | 343 ms
10,128 KB |
testcase_14 | AC | 355 ms
10,444 KB |
testcase_15 | AC | 266 ms
9,676 KB |
testcase_16 | AC | 255 ms
10,484 KB |
testcase_17 | AC | 229 ms
10,488 KB |
testcase_18 | AC | 220 ms
10,484 KB |
testcase_19 | AC | 231 ms
10,908 KB |
testcase_20 | AC | 222 ms
10,816 KB |
testcase_21 | AC | 229 ms
11,036 KB |
testcase_22 | AC | 197 ms
9,660 KB |
testcase_23 | AC | 206 ms
10,144 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 3 ms
5,376 KB |
testcase_28 | AC | 58 ms
5,376 KB |
testcase_29 | AC | 26 ms
5,376 KB |
testcase_30 | WA | - |
ソースコード
import core.thread; import std.conv, std.stdio, std.string; import std.algorithm, std.array, std.bigint, std.container, std.math, std.range, std.regex; // Input class EOFException : Throwable { this() { super("EOF"); } } string[] tokens; string readToken() { for (; tokens.empty; ) { tokens = readln.split; if (stdin.eof) throw new EOFException; } auto token = tokens[0]; tokens.popFront; return token; } int readInt() { return to!int(readToken); } long readLong() { return to!long(readToken); } real readReal() { return to!real(readToken); } // chmin/chmax void chmin(T)(ref T t, in T f) { if (t > f) t = f; } void chmax(T)(ref T t, in T f) { if (t < f) t = f; } // Pair struct Pair(S, T) { S x; T y; int opCmp( const Pair p) const { return (x < p.x) ? -1 : (x > p.x) ? +1 : (y < p.y) ? -1 : (y > p.y) ? +1 : 0; } int opCmp(ref const Pair p) const { return (x < p.x) ? -1 : (x > p.x) ? +1 : (y < p.y) ? -1 : (y > p.y) ? +1 : 0; } string toString() const { return "(" ~ to!string(x) ~ ", " ~ to!string(y) ~ ")"; } } auto pair(S, T)(inout(S) x, inout(T) y) { return Pair!(S, T)(x, y); } // Array int binarySearch(T)(in T[] as, in bool delegate(T) test) { int low = -1, upp = as.length; for (; low + 1 < upp; ) { int mid = (low + upp) >> 1; (test(as[mid]) ? low : upp) = mid; } return upp; } int lowerBound(T)(in T[] as, in T val) { return as.binarySearch((T a) { return (a < val); }); } int upperBound(T)(in T[] as, in T val) { return as.binarySearch((T a) { return (a <= val); }); } T[] unique(T)(in T[] as) { T[] bs; foreach (a; as) if (bs.empty || bs[$ - 1] != a) bs ~= a; return bs; } int N; real[] L; long K; void main(string[] args) { try { for (; ; ) { N = readInt; L = new real[N]; foreach (i; 0 .. N) { L[i] = readReal; } K = readLong; real lo = 0.0, ho = L.reduce!max; foreach (_; 0 .. 50) { real mo = (lo + ho) / 2.0; long sum; foreach (i; 0 .. N) { sum += cast(long)(floor(L[i] / mo)); } (sum >= K) ? (lo = mo) : (ho = mo); } writefln("%.10f", lo); } } catch (EOFException) {} }