結果
| 問題 | No.1799 Summer Day |
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-03-18 15:52:38 |
| 言語 | C (gcc 15.2.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 148 bytes |
| 記録 | |
| コンパイル時間 | 104 ms |
| コンパイル使用メモリ | 36,548 KB |
| 最終ジャッジ日時 | 2026-02-22 13:18:07 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 21 |
ソースコード
#include <stdio.h>
void main(void) {
int n,s ;
scanf("%d %d",&n,&s);
if(s/n >= 25 && s/n <= 30 ){
printf("Yes");
}else{
printf("No");
}
}
Maeda