結果
問題 | No.456 Millions of Submits! |
ユーザー | t8m8⛄️ |
提出日時 | 2016-12-08 18:09:11 |
言語 | Nim (2.0.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 579 bytes |
コンパイル時間 | 3,373 ms |
コンパイル使用メモリ | 66,816 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-29 21:30:29 |
合計ジャッジ時間 | 11,727 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 7 ms
6,940 KB |
testcase_08 | AC | 8 ms
6,940 KB |
testcase_09 | AC | 56 ms
6,940 KB |
testcase_10 | AC | 53 ms
6,944 KB |
testcase_11 | AC | 522 ms
6,940 KB |
testcase_12 | TLE | - |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'strutils' [UnusedImport] /home/judge/data/code/Main.nim(1, 18) Warning: imported and not used: 'sequtils' [UnusedImport]
ソースコード
import strutils, sequtils, math, strscans proc printf(formatstr: cstring) {.header: "<stdio.h>", importc: "printf", varargs.} proc f(n, a, b : float64): float64 {.inline.} = pow(n, a) * pow(ln(n), b) when isMainModule: var m: int input = stdin.readLine a, b, t, l, r: float64 discard input.scanf("$i", m) for i in 0..m-1: (l, r) = (0.0, 1000000000.0) input = stdin.readLine discard input.scanf("$f $f $f", a, b, t) for i in 1..64: var mid = (l + r) / 2 if f(mid, a, b) <= t: l = mid else: r = mid printf("%.11f\n", r)