結果
問題 |
No.1799 Summer Day
|
ユーザー |
![]() |
提出日時 | 2023-04-24 11:31:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 334 bytes |
コンパイル時間 | 1,639 ms |
コンパイル使用メモリ | 166,932 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 13:56:00 |
合計ジャッジ時間 | 2,513 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 16 WA * 5 |
ソースコード
#include <bits/stdc++.h> #include <atcoder/modint> #define rep(i,n) for(int i = 0;i<n;i++) using namespace std; using namespace atcoder; using mint = modint998244353; typedef long long ll; #define yesif(x) cout << ((x) ? "Yes": "No") << endl int main() { ll n, s; cin >> n >> s; yesif(s >= 25 and s/n<=30); return 0; }