結果
問題 | No.3049 Yes |
ユーザー | square1001 |
提出日時 | 2019-04-01 23:07:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 211 ms / 2,000 ms |
コード長 | 260 bytes |
コンパイル時間 | 1,305 ms |
実行使用メモリ | 1,468 KB |
スコア | 100 |
最終ジャッジ日時 | 2019-04-01 23:07:07 |
ジャッジサーバーID (参考情報) |
judge8 / |
純コード判定しない問題か言語 |
(要ログイン)
ソースコード
#include <ctime> #include <iostream> using namespace std; int main() { srand((unsigned)time(NULL)); int c = 2; while(clock() < 0.2 * CLOCKS_PER_SEC) c = 2 * c % 1000000007; if(rand() % 5 == 0) cout << ":(" << endl; else cout << "Yes" << endl; return 0; }