結果

問題 No.858 わり算
ユーザー michonz4michonz4
提出日時 2019-12-29 18:40:36
言語 C
(gcc 13.3.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 418 bytes
コンパイル時間 1,429 ms
コンパイル使用メモリ 25,472 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2025-01-05 14:44:15
合計ジャッジ時間 4,851 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:7:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |   scanf("%lld %lld", &a, &b);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string.h>

int main() {
  long long a, b, t, cnt=0, i;
  char num[53];
  scanf("%lld %lld", &a, &b);
  
  t=a/b;
  snprintf(num, 53, "%lld.", t);
  do {
    cnt++;
    t/=10;
  } while (t);

  a%=b;
  for (i=cnt+1; i<cnt+51; i+=10) {
    t=(a*10000000000)/b;
    snprintf(num+strlen(num), 53, "%.10lld", t);
    a=(a*10000000000)%b;
  }
  num[i]='\0';

  printf("%s\n", num);
  return 0;
}
0