結果

問題 No.1799 Summer Day
ユーザー vishal godia
提出日時 2022-01-07 21:30:39
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 352 bytes
コンパイル時間 2,000 ms
コンパイル使用メモリ 190,880 KB
最終ジャッジ日時 2025-01-27 09:12:16
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 12 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long


signed main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
#ifndef ONLINE_JUDGE
	freopen("input.txt","r",stdin);
	freopen("output.txt","w",stdout);
#endif
	int n,s; cin>>n>>s;
	int ans=n/s;
	if(ans>=25 and ans<=30){
		cout<<"Yes\n";
	}else{
		cout<<"No\n";
	}
	return 0;
}
0