結果
問題 | No.863 計算量 |
ユーザー |
![]() |
提出日時 | 2020-06-28 20:25:33 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 288 bytes |
コンパイル時間 | 1,358 ms |
コンパイル使用メモリ | 165,500 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-08 02:51:20 |
合計ジャッジ時間 | 2,003 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 |
ソースコード
#include <bits/stdc++.h>using namespace std;typedef long long ll;typedef long double ld;int main(int argc, char *argv[]) { ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);ld a,b;cin>>a>>b;if(b/(a+1)<=40){cout<<1<<endl;}else{cout<<2<<endl;}return 0;}