結果
問題 | No.1464 Number Conversion |
ユーザー | square1001 |
提出日時 | 2020-07-02 21:34:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,255 bytes |
コンパイル時間 | 730 ms |
コンパイル使用メモリ | 67,180 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-16 21:22:34 |
合計ジャッジ時間 | 1,930 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
#include <string> #include <cassert> #include <iostream> using namespace std; bool isvalid(string S) { if(S == "") return false; for(int i = 0; i < S.size(); ++i) { if(!('0' <= S[i] && S[i] <= '9') && S[i] != '.') { return false; } } int period_cnt = 0; for(int i = 0; i < S.size(); ++i) { if(S[i] == '.') ++period_cnt; } if(period_cnt >= 2) return false; if(S.front() == '.' || S.back() == '.') return false; if(S != "0" && S[0] == '0' && S[1] != '.') return false; int period_pos = S.size(); if(period_cnt == 1) { for(int i = 0; i < S.size(); ++i) { if(S[i] == '.') period_pos = i; } } if(S.size() - period_pos > 8 + 1) return false; // more than 8 digits after period if(period_pos >= 8) return false; // >= 10000000 int x = 0; for(int i = 0; i < period_pos; ++i) { x = x * 10 + (S[i] - '0'); } if(x > 1000000) return false; return true; } long long gcd(long long x, long long y) { if(y == 0) return x; return gcd(y, x % y); } int main() { string S; cin >> S; assert(isvalid(S)); long long x = 0, y = 0; for(int i = 0; i < S.size(); ++i) { if(S[i] == '.') y = 1; else x = x * 10 + (S[i] - '0'), y *= 10; } if(y == 0) y = 1; long long g = gcd(x, y); cout << y / g << ' ' << x / g << endl; return 0; }