結果
問題 | No.1224 I hate Sqrt Inequality |
ユーザー | cellcrafty |
提出日時 | 2020-09-11 22:27:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 613 bytes |
コンパイル時間 | 827 ms |
コンパイル使用メモリ | 68,864 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-08 11:06:19 |
合計ジャッジ時間 | 2,800 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
ソースコード
#include<iostream> #include<numeric> using namespace std; int main() { long long int a, b; long long int a_raw, b_raw; cin >> a_raw >> b_raw; long long int tmp_gcd = gcd(a_raw, b_raw); a = a_raw / tmp_gcd; b = b_raw / tmp_gcd; int b_digit = 0; long long int nines_line = 0; for(int divider = 10;; divider*=10){ if (b % divider != 0){ b_digit++; nines_line+=(divider / 10 * 9); continue; } break; } if (a % b != 0 && nines_line % b == 0){ cout << "Yes"; } else { cout << "No"; } }