結果
| 問題 | No.454 逆2乗和 |
| コンテスト | |
| ユーザー |
testestest
|
| 提出日時 | 2016-12-05 03:48:38 |
| 言語 | C90 (gcc 15.2.0) |
| 結果 |
AC
|
| 実行時間 | 25 ms / 2,000 ms |
| + 42µs | |
| コード長 | 83 bytes |
| 記録 | |
| コンパイル時間 | 45 ms |
| コンパイル使用メモリ | 35,584 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-24 17:13:43 |
| 合計ジャッジ時間 | 2,410 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 31 |
コンパイルメッセージ
main.c:1:12: warning: data definition has no type or storage class
1 | double s,n;i;main(){for(scanf("%lf",&n);n++<1e7;)s+=1/n/n;i=!printf("%.9f",s+1/n);}
| ^
main.c: In function 'main':
main.c:1:25: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch]
1 | double s,n;i;main(){for(scanf("%lf",&n);n++<1e7;)s+=1/n/n;i=!printf("%.9f",s+1/n);}
| ^~~~~
main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf'
+++ |+#include <stdio.h>
1 | double s,n;i;main(){for(scanf("%lf",&n);n++<1e7;)s+=1/n/n;i=!printf("%.9f",s+1/n);}
main.c:1:62: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch]
1 | double s,n;i;main(){for(scanf("%lf",&n);n++<1e7;)s+=1/n/n;i=!printf("%.9f",s+1/n);}
| ^~~~~~
main.c:1:62: note: include '<stdio.h>' or provide a declaration of 'printf'
ソースコード
double s,n;i;main(){for(scanf("%lf",&n);n++<1e7;)s+=1/n/n;i=!printf("%.9f",s+1/n);}
testestest