結果
| 問題 |
No.1799 Summer Day
|
| コンテスト | |
| ユーザー |
yukster714
|
| 提出日時 | 2023-04-24 11:21:13 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 194 bytes |
| コンパイル時間 | 1,553 ms |
| コンパイル使用メモリ | 165,028 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-08 13:53:02 |
| 合計ジャッジ時間 | 2,422 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 8 WA * 13 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define yesif(x) cout << ((x) ? "Yes": "No") << endl
int main() {
int n, s; cin >> n >> s;
yesif(s/n >= 25 and s/n <=30);
return 0;
}
yukster714