結果
| 問題 | No.863 計算量 |
| コンテスト | |
| ユーザー |
mmn15277198
|
| 提出日時 | 2020-07-06 19:16:45 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 1,000 ms |
| コード長 | 302 bytes |
| 記録 | |
| コンパイル時間 | 691 ms |
| コンパイル使用メモリ | 78,540 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-09-24 17:16:53 |
| 合計ジャッジ時間 | 1,482 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
#include <vector>
#include <iostream>
#include <algorithm>
#include <functional>
#include <string>
#include <math.h>
#include <map>
using namespace std;
int main(){
long double a,b;
cin >> a >> b;
long double x=b/a;
if(x>=1600){
cout << 2 << endl;
}else{
cout << 1 << endl;
}
return 0;
}
mmn15277198