結果
| 問題 |
No.1799 Summer Day
|
| コンテスト | |
| ユーザー |
aspi
|
| 提出日時 | 2022-01-07 21:31:16 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 270 bytes |
| コンパイル時間 | 1,938 ms |
| コンパイル使用メモリ | 190,932 KB |
| 最終ジャッジ日時 | 2025-01-27 09:12:30 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 WA * 4 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(),v.end()
signed main(){
int N,S;
cin>>N>>S;
if(N+24<=S&&S<=29*N)cout<<"Yes"<<endl;
else cout<<"No"<<endl;
}
aspi