結果
| 問題 | No.3356 A÷B問題 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-11-14 21:29:54 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 199 bytes |
| 記録 | |
| コンパイル時間 | 3,113 ms |
| コンパイル使用メモリ | 275,552 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2025-11-14 21:30:05 |
| 合計ジャッジ時間 | 4,404 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / 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;
a*=1e9;
b*=1e9;
cout<<fixed<<setprecision(19)<<a/b<<endl;
}