結果
問題 | No.2022 Antilogarithm |
ユーザー |
|
提出日時 | 2022-07-29 22:01:56 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 278 bytes |
コンパイル時間 | 1,572 ms |
コンパイル使用メモリ | 165,652 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-19 14:46:24 |
合計ジャッジ時間 | 3,299 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 34 WA * 28 |
ソースコード
#include <bits/stdc++.h>#define ll long longusing namespace std;#define all(v) v.begin(), v.end()#define rep(i,n) for (long long i=0;i<(long long)(n);i++)int main() {ll A,B;cin >> A >> B;if(A*A/2 < B*B)cout << "Yes" << endl;else cout << "No" << endl;}