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