Online Judge | Problem Set | Authors | Online Contests | User | ||||||
---|---|---|---|---|---|---|---|---|---|---|
Web Board Home Page F.A.Qs Statistical Charts | Current Contest Past Contests Scheduled Contests Award Contest |
Re:23ms 的一个 C++ possible versionIn Reply To:23ms 的一个 C++ possible version Posted by:eason64 at 2010-08-04 18:50:15 > #include <iostream> > using namespace std; > > int main() > { > int p, e, i, d, cnt = 1; > while(cin >> p >> e >> i >> d, p != -1) > { > p %= 23; > e %= 28; > i %= 33; > int t = 0, s; > while(s = i + 33 * t, > ! (s > d && (s - p) % 23 == 0 && (s - e) % 28 == 0 ) ) > { > ++t; > } > cout << "Case " << cnt++ << ": the next triple peak occurs in " << s - d << " days." << endl; > } > return 0; > } Followed by: Post your reply here: |
All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator