結果
| 問題 |
No.3356 A÷B問題
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-11-14 21:27:44 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 175 bytes |
| コンパイル時間 | 2,858 ms |
| コンパイル使用メモリ | 275,444 KB |
| 実行使用メモリ | 7,852 KB |
| 最終ジャッジ日時 | 2025-11-14 21:28:02 |
| 合計ジャッジ時間 | 3,925 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 25 WA * 11 |
ソースコード
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int inf=1e18;
signed main(){
double a,b;cin>>a>>b;
cout<<fixed<<setprecision(18)<<a/b<<endl;
}