結果
問題 | No.1224 I hate Sqrt Inequality |
ユーザー | uk714 |
提出日時 | 2020-09-12 01:40:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 774 bytes |
コンパイル時間 | 6,424 ms |
コンパイル使用メモリ | 399,776 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-09 08:45:56 |
合計ジャッジ時間 | 5,865 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | WA | - |
ソースコード
// https://yukicoder.me/problems/no/1224 #include <bits/stdc++.h> #include <boost/multiprecision/cpp_dec_float.hpp> #include <boost/multiprecision/cpp_int.hpp> using ml = boost::multiprecision::cpp_int; using md = boost::multiprecision::cpp_dec_float_100; using namespace std; #define int long long #define REP(i, n) FOR(i, 0, n) #define FOR(i, s, n) for (int i = (s), i##_len = (n); i < i##_len; ++i) #define ALL(obj) (obj).begin(), (obj).end() #define ALLR(obj) (obj).rbegin(), (obj).rend() #define CEIL(a, b) ((a - 1) / b + 1) void solve() { md A, B; cin >> A >> B; md t = A / B; t *= B; if (A == t) { cout << "No\n"; } else { cout << "Yes\n"; } } signed main() { cin.tie(nullptr)->sync_with_stdio(false); solve(); }