結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー rsk0315rsk0315
提出日時 2019-01-30 16:24:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,042 bytes
コンパイル時間 2,990 ms
コンパイル使用メモリ 31,888 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-29 22:47:14
合計ジャッジ時間 1,557 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 0 ms
4,376 KB
testcase_03 AC 0 ms
4,380 KB
testcase_04 AC 0 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 0 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 0 ms
4,376 KB
testcase_14 AC 0 ms
4,380 KB
testcase_15 AC 0 ms
4,376 KB
testcase_16 AC 0 ms
4,376 KB
testcase_17 AC 1 ms
4,384 KB
testcase_18 AC 0 ms
4,380 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 0 ms
4,380 KB
testcase_21 AC 1 ms
4,376 KB
testcase_22 AC 0 ms
4,376 KB
testcase_23 AC 1 ms
4,376 KB
testcase_24 AC 0 ms
4,376 KB
testcase_25 AC 0 ms
4,376 KB
testcase_26 AC 1 ms
4,380 KB
testcase_27 AC 0 ms
4,376 KB
testcase_28 AC 1 ms
4,380 KB
testcase_29 AC 0 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdint>

constexpr intmax_t FRAC_MAX = 10000000000;

int main() {
  int N;
  scanf("%d", &N);

  intmax_t intpart = 0;
  intmax_t fracpart = 0;
  for (int i = 0; i < N; ++i) {
    char A[32];
    scanf("%s", A);

    const char* p = A;
    bool neg = (*p == '-');
    if (neg) ++p;

    intmax_t ip = *p-'0';
    intmax_t fp = 0;
    while (*++p >= '0')
      ip = ip*10 + *p-'0';

    if (*p == '.') {
      ++p;
      fp = *p-'0';
      int digno = 1;
      while (*++p >= '0') {
        fp = fp*10 + *p-'0';
        ++digno;
      }
      while (digno++ < 10) fp *= 10;
    }

    if (neg) {
      ip = -ip;
      fp = -fp;
    }

    intpart += ip;
    fracpart += fp;

    if (fracpart >= FRAC_MAX) {
      ++intpart;
      fracpart -= FRAC_MAX;
    } else if (fracpart < 0) {
      --intpart;
      fracpart += FRAC_MAX;
    }
  }

  if (intpart < 0 && fracpart > 0) {
    ++intpart;
    if (intpart == 0) putchar('-');
    fracpart = FRAC_MAX - fracpart;
  }
  printf("%jd.%010jd\n", intpart, fracpart);
}
0