Submission #78664


ソースコード

1
2
3
4
5
6
7
8
9
10
11
12
13
#include <bits/stdc++.h>
#define ll long long
#define gcd(x,y) __gcd(x,y) //最大公約数
#define lcm(x,y) x/(__gcd(x,y))*y //最小公倍数
#define so(a) sort(a.begin(),a.end()) //ソート昇順
#define sor(a) sort(a.begin(),a.end(),greater<int>()) //ソート降順
using namespace std;
int main() {
double a,b;
cin>>a>>b;
printf("%11.10f\n",a/b);
return(0);
}

ステータス

項目 データ
問題 1768 - double
ユーザー名 ei2225
投稿日時 2024-04-30 17:13:31
言語 C++17
状態 Accepted
得点 1
ソースコード長 394 Byte
最大実行時間 28 ms
最大メモリ使用量 584 KB

セット

セット 得点 Cases
1 ALL 1 / 1 *

テストケース

ファイル名 状態 実行時間 メモリ使用量 #
in1.txt AC 21 ms 476 KB
1
in2.txt AC 24 ms 448 KB
1
in3.txt AC 28 ms 552 KB
1
in4.txt AC 25 ms 520 KB
1
in5.txt AC 23 ms 364 KB
1
in6.txt AC 20 ms 584 KB
1