結果
問題 | No.3049 Yes |
ユーザー | risujiroh |
提出日時 | 2019-04-01 22:12:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 439 bytes |
コンパイル時間 | 2,566 ms |
実行使用メモリ | 6,868 KB |
スコア | 100 |
最終ジャッジ日時 | 2019-04-01 22:12:41 |
ジャッジサーバーID (参考情報) |
judge8 / |
純コード判定しない問題か言語 |
(要ログイン)
ソースコード
#include <bits/stdc++.h> using namespace std; using lint = long long; template<class T = int> using V = vector<T>; template<class T = int> using VV = V< V<T> >; template<class Z> Z rng(Z a, Z b) { static mt19937 mt(chrono::steady_clock::now().time_since_epoch().count()); return uniform_int_distribution<Z>(a, b - 1)(mt); } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << (rng(0, 5) ? "Yes" : "No") << '\n'; }