結果
| 問題 | No.8124 A+B |
| コンテスト | |
| ユーザー |
Katu2ou
|
| 提出日時 | 2026-04-01 21:41:12 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 144 bytes |
| 記録 | |
| コンパイル時間 | 2,081 ms |
| コンパイル使用メモリ | 333,376 KB |
| 実行使用メモリ | 341,220 KB |
| 最終ジャッジ日時 | 2026-04-01 21:41:18 |
| 合計ジャッジ時間 | 5,040 ms |
|
ジャッジサーバーID (参考情報) |
judge4_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 6 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){
cout << fixed << setprecision(12);
long double a,b;
cin>>a>>b;
cout<<a+b<<endl;
}
Katu2ou