結果
問題 | No.1799 Summer Day |
ユーザー |
![]() |
提出日時 | 2022-01-16 15:28:15 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 163 bytes |
コンパイル時間 | 199 ms |
コンパイル使用メモリ | 27,904 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-23 10:42:27 |
合計ジャッジ時間 | 1,109 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#include<stdio.h>int main(){long long int n, s;scanf("%lld %lld", &n, &s);if (s < 25 || 29 * n < s)printf("No\n");elseprintf("Yes\n");return 0;}