結果
| 問題 |
No.8062 A + B
|
| コンテスト | |
| ユーザー |
onsen_manjuuu
|
| 提出日時 | 2020-04-01 22:26:25 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 209 bytes |
| コンパイル時間 | 1,461 ms |
| コンパイル使用メモリ | 165,636 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-06-27 11:37:17 |
| 合計ジャッジ時間 | 2,007 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 8 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
const ll mod = 1000000007;
int main()
{
long double a, b;
cin >> a >> b;
cout << fixed <<setprecision(100) << a + b << endl;
}
onsen_manjuuu