結果
| 問題 |
No.1799 Summer Day
|
| コンテスト | |
| ユーザー |
reg7777
|
| 提出日時 | 2022-01-07 21:23:59 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 700 bytes |
| コンパイル時間 | 6,876 ms |
| コンパイル使用メモリ | 398,696 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-14 08:23:22 |
| 合計ジャッジ時間 | 6,209 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
//long double:[1(+-),11(e),52],2^52=4.5e15
//include{{{
#include <bits/stdc++.h>
#include <atcoder/all>
#include <boost/multiprecision/cpp_int.hpp>
namespace mp=boost::multiprecision;
using namespace std;
//}}}
//MOD1=1e9+7 MOD2=998244353{{{
#define INF LONG_MAX
#define MOD1 1000000007
#define MOD2 998244353
#define rng(a) a.begin(),a.end()
#define rrng(a) a.end(),a.begin()
#define endl "\n"
using ll=long long int;
#define int ll
//}}}
//main{{{
void main_();
signed main(){
cin.tie(nullptr);
ios::sync_with_stdio(false);
main_();
}
//}}}
void main_(){
int N,S;
cin>>N>>S;
if(25<=S&&S<=N*29){
cout<<"Yes"<<endl;
}
else{
cout<<"No"<<endl;
}
}
reg7777