結果
問題 |
No.8072 Sum of sqrt(x)
|
ユーザー |
👑 |
提出日時 | 2020-09-12 16:16:26 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,651 bytes |
コンパイル時間 | 962 ms |
コンパイル使用メモリ | 98,544 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2025-01-02 06:40:36 |
合計ジャッジ時間 | 42,214 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 6 WA * 21 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:43:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 43 | scanf("%lld", &x); | ~~~~~^~~~~~~~~~~~
ソースコード
#include <cassert> #include <cmath> #include <cstdint> #include <cstdio> #include <cstdlib> #include <cstring> #include <algorithm> #include <bitset> #include <complex> #include <deque> #include <functional> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <string> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> using namespace std; using Int = long long; template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; }; template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; } template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; } template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; } const long double EPS = 1e-16; int main() { char buf0[110], buf1[110]; int N; for (; ~scanf("%d", &N); ) { Int upp = 0; long double low = 0.0; for (int i = 0; i < N; ++i) { Int x; scanf("%lld", &x); if (x > 0) { /* sqrt(X[i]) - k = (X[i] - k^2) / (sqrt(X[i]) + k) */ const long double y = sqrtl((long double)x); const Int k = (Int)y; upp += k; low += (x - k * k) / (y + k); const Int l = (Int)(low + EPS); upp += l; low -= l; } const int len0 = sprintf(buf0, "%lld", upp); sprintf(buf1, "%.*Lf", 16 - len0, max(low, 0.0L)); printf("%s%s\n", buf0, buf1 + 1); } } return 0; }