結果
| 問題 |
No.8049 Yes
|
| コンテスト | |
| ユーザー |
risujiroh
|
| 提出日時 | 2019-04-01 21:09:43 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 439 bytes |
| コンパイル時間 | 1,873 ms |
| 実行使用メモリ | 1,492 KB |
| スコア | 100 |
| 最終ジャッジ日時 | 2019-04-01 21:18:33 |
|
ジャッジサーバーID (参考情報) |
judge9 / |
| 純コード判定しない問題か言語 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 |
ソースコード
#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';
}
risujiroh