結果

問題 No.1799 Summer Day
ユーザー tonyu0
提出日時 2022-04-19 09:00:16
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 711 ms
コンパイル使用メモリ 91,604 KB
最終ジャッジ日時 2025-01-28 19:17:23
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <iostream>
#include <numeric>
#include <queue>
#include <vector>
using namespace std;
using ll = long long;
#define rep(i, j, n) for (int i = j; i < (n); ++i)


int main() {
  cin.tie(0)->sync_with_stdio(0);
  ll n, s;
  cin >> n >> s;
  ll lower = 25, upper = n * 29;
  cout << (lower <= s && s <= upper ? "Yes" : "No");
  return 0;
}
0