結果
問題 | No.3072 Sum of sqrt(x) |
ユーザー | 259_Momone |
提出日時 | 2020-09-12 23:23:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 453 bytes |
コンパイル時間 | 3,351 ms |
コンパイル使用メモリ | 203,164 KB |
実行使用メモリ | 19,144 KB |
最終ジャッジ日時 | 2024-06-10 19:08:47 |
合計ジャッジ時間 | 18,120 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:10:21: warning: 't' may be used uninitialized [-Wmaybe-uninitialized] 10 | v[i] = sqrtl(t); | ~~~~~^~~ main.cpp:8:29: note: 't' was declared here 8 | for(unsigned long i{1}, t; i <= N; ++i){ | ^
ソースコード
#include<bits/stdc++.h> int main(){ using namespace std; unsigned long N; scanf("%lu", &N); vector<long double> v(N + 1); for(unsigned long i{1}, t; i <= N; ++i){ scanf("%lu", &N); v[i] = sqrtl(t); } for(unsigned long i{1}; i <= N; i <<= 1UL)for(unsigned long j{2 * i}; j <= N; j += 2 * i)v[j] += v[j - i]; for(unsigned long i{1}; i <= N; ++i)printf("%.17llg\n", v[i] += v[i & (i - 1)]); return 0; }