結果
問題 | No.451 575 |
ユーザー | t8m8⛄️ |
提出日時 | 2016-12-02 07:05:05 |
言語 | Nim (2.0.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,034 bytes |
コンパイル時間 | 3,129 ms |
コンパイル使用メモリ | 66,136 KB |
実行使用メモリ | 13,752 KB |
最終ジャッジ日時 | 2024-06-29 20:54:00 |
合計ジャッジ時間 | 9,597 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,752 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 3 ms
6,944 KB |
testcase_05 | AC | 4 ms
6,940 KB |
testcase_06 | AC | 8 ms
6,940 KB |
testcase_07 | AC | 32 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 4 ms
6,944 KB |
testcase_10 | WA | - |
testcase_11 | AC | 426 ms
6,944 KB |
testcase_12 | WA | - |
testcase_13 | AC | 167 ms
6,944 KB |
testcase_14 | AC | 6 ms
6,944 KB |
testcase_15 | AC | 11 ms
6,944 KB |
testcase_16 | AC | 65 ms
6,940 KB |
testcase_17 | AC | 60 ms
6,940 KB |
testcase_18 | AC | 31 ms
6,940 KB |
testcase_19 | AC | 90 ms
6,944 KB |
testcase_20 | AC | 13 ms
6,940 KB |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 405 ms
6,944 KB |
testcase_24 | TLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 18) Warning: imported and not used: 'sequtils' [UnusedImport]
ソースコード
import strutils, sequtils, math var a = newSeq[int64](100010) proc f(i, n: int, b: seq[int64]): int64 = if i > n: return -1 if i mod 2 == 0: a[i] = a[i-1] - b[i-1] if a[i] <= 0 or 10^18 < a[i]: return abs(a[i]) return f(i+1, n, b) else: a[i] = b[i-1] - a[i-1] if a[i] <= 0 or 10^18 < a[i]: return abs(a[i]) return f(i+1, n, b) when isMainModule: var n = stdin.readLine.parseInt b = newSeq[int64](n) for i in 0..n-1: b[i] = stdin.readLine.parseBiggestInt var d: int64 = max(b[0] div 100, 1) for i in 1..100: var l: int64 = d*(i-1) r: int64 = d*i while r - l > 10: var x = (l + l + r) div 3 y = (l + r + r) div 3 a[0] = x let xf = f(1, n, b) a[0] = y let yf = f(1, n, b) if xf > yf: l = x else: r = y for i in max(1, l-100)..min(b[0]-1, l+100): a[0] = i if f(1, n, b) == -1: echo n+1 for i in 0..n: echo a[i] quit() echo "-1"