結果
問題 | No.229 線分上を往復する3つの動点の一致 |
ユーザー | machy |
提出日時 | 2015-06-19 23:37:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 43 ms / 5,000 ms |
コード長 | 886 bytes |
コンパイル時間 | 588 ms |
コンパイル使用メモリ | 74,496 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 04:22:44 |
合計ジャッジ時間 | 3,452 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
6,812 KB |
testcase_01 | AC | 39 ms
6,944 KB |
testcase_02 | AC | 40 ms
6,944 KB |
testcase_03 | AC | 39 ms
6,944 KB |
testcase_04 | AC | 39 ms
6,944 KB |
testcase_05 | AC | 38 ms
6,940 KB |
testcase_06 | AC | 40 ms
6,940 KB |
testcase_07 | AC | 40 ms
6,940 KB |
testcase_08 | AC | 39 ms
6,940 KB |
testcase_09 | AC | 39 ms
6,944 KB |
testcase_10 | AC | 40 ms
6,940 KB |
testcase_11 | AC | 38 ms
6,948 KB |
testcase_12 | AC | 38 ms
6,944 KB |
testcase_13 | AC | 38 ms
6,944 KB |
testcase_14 | AC | 40 ms
6,940 KB |
testcase_15 | AC | 38 ms
6,940 KB |
testcase_16 | AC | 39 ms
6,940 KB |
testcase_17 | AC | 41 ms
6,940 KB |
testcase_18 | AC | 39 ms
6,940 KB |
testcase_19 | AC | 39 ms
6,940 KB |
testcase_20 | AC | 38 ms
6,940 KB |
testcase_21 | AC | 39 ms
6,940 KB |
testcase_22 | AC | 39 ms
6,944 KB |
testcase_23 | AC | 38 ms
6,940 KB |
testcase_24 | AC | 38 ms
6,940 KB |
testcase_25 | AC | 43 ms
6,944 KB |
testcase_26 | AC | 42 ms
6,944 KB |
testcase_27 | AC | 43 ms
6,944 KB |
testcase_28 | AC | 41 ms
6,940 KB |
testcase_29 | AC | 38 ms
6,940 KB |
testcase_30 | AC | 39 ms
6,940 KB |
testcase_31 | AC | 39 ms
6,944 KB |
testcase_32 | AC | 40 ms
6,944 KB |
testcase_33 | AC | 39 ms
6,940 KB |
testcase_34 | AC | 40 ms
6,940 KB |
testcase_35 | AC | 41 ms
6,940 KB |
testcase_36 | AC | 42 ms
6,944 KB |
testcase_37 | AC | 41 ms
6,944 KB |
testcase_38 | AC | 39 ms
6,940 KB |
testcase_39 | AC | 38 ms
6,940 KB |
testcase_40 | AC | 39 ms
6,940 KB |
testcase_41 | AC | 38 ms
6,940 KB |
testcase_42 | AC | 38 ms
6,940 KB |
testcase_43 | AC | 38 ms
6,940 KB |
testcase_44 | AC | 40 ms
6,940 KB |
testcase_45 | AC | 40 ms
6,940 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <string> #include <cmath> #include <iomanip> #include <map> using namespace std; typedef long long LL; LL gcd(LL a, LL b){ if(a > b) swap(a, b); if(a == 0) return b; return gcd(b % a, a); } LL lcm(LL a, LL b){ return a * b / gcd(a, b); } int main(){ LL t1, t2, t3; cin >> t1 >> t2 >> t3; LL m = lcm(t1, lcm(t2, t3)); LL c1 = m / t1; LL c2 = m / t2; LL c3 = m / t3; LL d = 1; for(LL i = 1; i <= 2000000; i++){ LL r1 = c1 - c1 / i * i; LL r2 = c2 - c2 / i * i; LL r3 = c3 - c3 / i * i; if((r1 == r2 || r1 == i-r2) && (r1 == r3 || r1 == i-r3)){ d = i; } } if(t1 == t2 && t2 == t3){ cout << "0/1" << endl; } LL d2 = gcd(m, d); cout << m/d2 << "/" << d/d2 << endl; return 0; }