結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー ciel
提出日時 2014-11-27 23:29:39
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 174 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 28,160 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2025-01-03 09:27:54
合計ジャッジ時間 1,133 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21 WA * 9
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:4:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    4 |         scanf("%d",&N);
      |         ~~~~~^~~~~~~~~
main.cpp:7:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |                 scanf("%Lf",&x);
      |                 ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <cstdio>
int main(){
	int N;
	scanf("%d",&N);
	long double s=0,x;
	for(int i=0;i<N;i++){
		scanf("%Lf",&x);
		s+=x;
	}
	printf("%.10Lf\n",s);
	return 0;
}
0