結果
問題 |
No.81 すべて足すだけの簡単なお仕事です。
|
ユーザー |
![]() |
提出日時 | 2015-08-19 22:06:16 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 313 bytes |
コンパイル時間 | 424 ms |
コンパイル使用メモリ | 58,232 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-18 10:35:26 |
合計ジャッジ時間 | 1,215 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 14 WA * 16 |
ソースコード
#include <iostream> #include <string> #include <cmath> #include <cstdio> using namespace std; int main() { int N; cin >> N; double total = 0.0; double tmp; for (int i = 0; i < N; i++) { cin >> tmp; total += tmp; } printf("%0.10lf", total); cout << endl; }