結果
問題 |
No.1902 AC Ratio
|
ユーザー |
|
提出日時 | 2022-04-10 23:46:10 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 343 bytes |
コンパイル時間 | 1,620 ms |
コンパイル使用メモリ | 168,344 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-14 14:22:55 |
合計ジャッジ時間 | 2,400 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 15 |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; int main() { string s; cin>>s; int i; for(i=0;i<s.length();i++) { if(s[i]=='/') break; } float a=stol(s.substr(0,i)); float b=stol(s.substr(i+1,s.length()-i-1)); cout<<fixed<<setprecision(5)<<a/b<<endl; return 0; }