結果

問題 No.2271 平方根の13桁精度近似計算
ユーザー chro_96chro_96
提出日時 2023-04-17 22:27:57
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 919 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 30,208 KB
実行使用メモリ 8,308 KB
最終ジャッジ日時 2024-10-12 22:36:20
合計ジャッジ時間 2,388 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,196 KB
testcase_01 AC 4 ms
8,288 KB
testcase_02 AC 4 ms
8,224 KB
testcase_03 AC 4 ms
8,152 KB
testcase_04 AC 4 ms
8,196 KB
testcase_05 AC 4 ms
8,188 KB
testcase_06 AC 5 ms
8,236 KB
testcase_07 AC 3 ms
8,144 KB
testcase_08 AC 4 ms
7,952 KB
testcase_09 AC 3 ms
8,080 KB
testcase_10 AC 4 ms
8,208 KB
testcase_11 AC 4 ms
8,216 KB
testcase_12 AC 4 ms
8,192 KB
testcase_13 AC 4 ms
8,172 KB
testcase_14 AC 4 ms
7,964 KB
testcase_15 AC 4 ms
8,236 KB
testcase_16 AC 4 ms
7,932 KB
testcase_17 AC 3 ms
8,208 KB
testcase_18 AC 4 ms
8,100 KB
testcase_19 AC 3 ms
8,276 KB
testcase_20 AC 3 ms
8,296 KB
testcase_21 AC 4 ms
8,056 KB
testcase_22 AC 3 ms
8,196 KB
testcase_23 AC 4 ms
8,116 KB
testcase_24 AC 4 ms
8,120 KB
testcase_25 AC 4 ms
7,936 KB
testcase_26 AC 4 ms
8,236 KB
testcase_27 AC 3 ms
8,040 KB
testcase_28 AC 3 ms
8,232 KB
testcase_29 AC 3 ms
8,224 KB
testcase_30 AC 8 ms
8,308 KB
testcase_31 AC 4 ms
8,128 KB
testcase_32 AC 3 ms
8,072 KB
testcase_33 AC 4 ms
8,204 KB
testcase_34 AC 4 ms
8,180 KB
testcase_35 AC 4 ms
8,152 KB
testcase_36 AC 13 ms
8,116 KB
testcase_37 AC 3 ms
8,172 KB
testcase_38 AC 4 ms
8,072 KB
testcase_39 AC 4 ms
8,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main () {
  long long n = 0LL;
  int e = 0;
  
  int res = 0;
  
  long long ans = -1LL;
  long long d = 1LL;
  
  long long tmp = 0LL;
  long long g[78125][10] = {};
  int gcnt[78125] = {};
  
  res = scanf("%lld", &n);
  res = scanf("%d", &e);
  
  while (e > 0) {
    d *= 5LL;
    e--;
  }
  
  if (n > 0LL) {
    n %= d;
  } else {
    n = (d-(-n)%d)%d;
  }
  
  for (long long i = 0LL; i < 78125LL; i += 1LL) {
    g[(int)((i*i)%78125LL)][gcnt[(int)((i*i)%78125LL)]] = i;
    gcnt[(int)((i*i)%78125LL)]++;
  }
  
  while (ans < 0LL && tmp < d && tmp <= (1LL<<29LL)) {
    for (int i = 0; i < gcnt[(int)(n%78125LL)]; i++) {
      long long tmp2 = tmp+g[(int)(n%78125LL)][i];
      if ((tmp2*tmp2)%d == n && tmp2 <= (1LL<<29LL)) {
        ans = tmp2;
      }
    }
    tmp += 78125LL;
  }
  
  if (ans < 0LL) {
    printf("NaN\n");
  } else {
    printf("%lld\n", ans);
  }
  
  return 0;
}
0