結果
| 問題 | 
                            No.1799 Summer Day
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2022-01-28 22:03:07 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 173 bytes | 
| コンパイル時間 | 2,349 ms | 
| コンパイル使用メモリ | 190,356 KB | 
| 最終ジャッジ日時 | 2025-01-27 16:34:09 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 14 WA * 7 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
int n, s;
int main()
{	
	cin >> n >> s;
	if(s >= 25 && s < 30 * n)
		cout << "Yes" << endl;
	else
		cout << "No" << endl;
}