結果
問題 | No.2271 平方根の13桁精度近似計算 |
ユーザー | tomerun |
提出日時 | 2023-04-14 23:01:37 |
言語 | Crystal (1.11.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,013 bytes |
コンパイル時間 | 14,359 ms |
コンパイル使用メモリ | 296,700 KB |
実行使用メモリ | 12,068 KB |
最終ジャッジ日時 | 2024-10-10 14:03:39 |
合計ジャッジ時間 | 16,744 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
12,068 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
n = read_line.to_i64 e = read_line.to_i if e == 0 puts 0 exit end ab = n.abs a = Array.new(e + 1) do v = ab % 5 ab //= 5 n < 0 ? (5 - v) % 5 : v end if a[0] == 2 || a[0] == 3 puts "NaN" exit end if a[0] == 0 q = [[0, 0]] elsif a[0] == 1 q = [[1, 0], [4, 3]] else q = [[2, 0], [3, 1]] end 1.upto(e) do |i| nq = [] of Array(Int32) q.each do |cand| sum = cand[i] 1.upto(i - 1) do |j| sum += cand[j] * cand[i - j] end 5.times do |j| if (j * cand[0] * 2 + sum) % 5 == a[i] carry = (j * cand[0] * 2 + sum) // 5 nc = cand.dup nc[i] = j nc << carry nq << nc end end end if nq.empty? puts "NaN" exit end q = nq end ans = 0i64 base = 1i64 (e + 1).times do |i| ans += base * q[0][i] base *= 5 end if ans > 1 << 29 raise RuntimeError.new end v = ans * ans - n c = 0 while v % 5 == 0 v //= 5 c += 1 end if c < e puts q.size puts q[0] puts ans puts "invalid" while true end end puts ans