結果
問題 | No.3072 Sum of sqrt(x) |
ユーザー | Lisp_Coder |
提出日時 | 2023-08-04 01:09:16 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 789 bytes |
コンパイル時間 | 582 ms |
コンパイル使用メモリ | 32,384 KB |
実行使用メモリ | 5,888 KB |
最終ジャッジ日時 | 2024-10-13 22:13:42 |
合計ジャッジ時間 | 35,466 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | OLE | - |
testcase_08 | OLE | - |
testcase_09 | OLE | - |
testcase_10 | WA | - |
testcase_11 | OLE | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | OLE | - |
testcase_19 | OLE | - |
testcase_20 | WA | - |
testcase_21 | OLE | - |
testcase_22 | OLE | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | OLE | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
#include<assert.h> #include<complex.h> #include<ctype.h> #include<errno.h> #include<fenv.h> #include<float.h> #include<inttypes.h> #include<iso646.h> #include<limits.h> #include<locale.h> #include<math.h> #include<setjmp.h> #include<signal.h> #include<stdalign.h> #include<stdarg.h> #include<stdatomic.h> #include<stdbool.h> #include<stddef.h> #include<stdint.h> #include<stdio.h> #include<stdlib.h> #include<stdnoreturn.h> #include<string.h> #include<tgmath.h> #include<time.h> #include<wchar.h> #include<wctype.h> int main(void) { int N; scanf("%d", &N); int x[N]; for (int i = 0; i < N; i++) { scanf("%d", &x[i]); } long double ans = 0; for (int i = 0; i < N; i++) { ans += sqrt(x[i]); printf("%.18Lf\n", ans); } return 0; }