結果

問題 No.1799 Summer Day
ユーザー 👑 Nachia
提出日時 2024-04-26 18:56:55
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 737 ms
コンパイル使用メモリ 65,024 KB
最終ジャッジ日時 2025-02-21 09:10:21
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
using i64 = long long;

int main(){
    i64 N; cin >> N;
    i64 S; cin >> S;
    bool ans = true;
    if(S < 25) ans = false;
    if(N*29 < S) ans = false;
    cout << (ans ? "Yes" : "No") << "\n";
    return 0;
}
0