結果
| 問題 |
No.2022 Antilogarithm
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-07-29 21:54:40 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 276 bytes |
| コンパイル時間 | 1,495 ms |
| コンパイル使用メモリ | 165,300 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-19 14:27:40 |
| 合計ジャッジ時間 | 3,138 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 WA * 33 |
ソースコード
#include <bits/stdc++.h>
#define ll long long
using 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*2 < B*B)cout << "Yes" << endl;
else cout << "No" << endl;
}