結果
問題 | No.1236 長針と短針 |
ユーザー | beet |
提出日時 | 2020-10-07 14:34:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,590 bytes |
コンパイル時間 | 2,010 ms |
コンパイル使用メモリ | 202,936 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-20 03:26:07 |
合計ジャッジ時間 | 2,745 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,944 KB |
ソースコード
// verification-helper: PROBLEM https://yukicoder.me/problems/4941 #include<bits/stdc++.h> using namespace std; #define call_from_test #ifndef call_from_test #include <bits/stdc++.h> using namespace std; #endif //BEGIN CUT HERE template<typename T> struct fraction{ T num,dom; fraction(){} fraction(T n,T d):num(n),dom(d){ assert(dom!=0); if(dom<0) num*=-1,dom*=-1; T tmp=__gcd(abs(num),abs(dom)); num/=tmp; dom/=tmp; } fraction operator+(const fraction a) const{ return fraction(num*a.dom+a.num*dom,dom*a.dom); } fraction operator-(const fraction a) const{ return fraction(num*a.dom-a.num*dom,dom*a.dom); } fraction operator*(const fraction a) const{ return fraction(num*a.num,dom*a.dom); } fraction operator/(const fraction a){ return fraction(num*a.dom,dom*a.num); } fraction operator*(T k) const{return fraction(num*k,dom);} fraction operator/(T k) const{return fraction(num,dom*k);} #define define_cmp(op) \ bool operator op (const fraction a)const{return num*a.dom op a.num*dom;} define_cmp(==) define_cmp(!=) define_cmp(<) define_cmp(>) define_cmp(<=) define_cmp(>=) #undef define_cmp }; //END CUT HERE #ifndef call_from_test //INSERT ABOVE HERE signed main(){ return 0; } #endif #undef call_from_test signed main(){ cin.tie(0); ios::sync_with_stdio(0); string s,t; cin>>s>>t; int a=(s[0]-'0')*10+(s[1]-'0'); int b=(t[0]-'0')*10+(t[1]-'0'); using F = fraction<int>; F c(a*60+b,1); F d(720,11); F x(0,1); while(x<c) x=x+d; x=x-c; cout<<x.num*60/x.dom<<endl; return 0; }