結果
| 問題 |
No.8049 Yes
|
| コンテスト | |
| ユーザー |
mine691
|
| 提出日時 | 2019-04-01 22:22:02 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 5 ms / 2,000 ms |
| コード長 | 369 bytes |
| コンパイル時間 | 2,164 ms |
| 実行使用メモリ | 1,492 KB |
| スコア | 100 |
| 最終ジャッジ日時 | 2019-04-01 22:22:06 |
|
ジャッジサーバーID (参考情報) |
judge7 / |
| 純コード判定しない問題か言語 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll mod = 1e9 + 7;
const ll inf = (1 << 30) - 1;
const ll infll = (1LL << 61) - 1;
int main()
{
std::random_device rnd;
std::mt19937 mt(rnd());
std::uniform_int_distribution<> rand100(0, 6);
int n = rand100(mt);
if(n == 0)cout << "" << endl;
else cout << "Yes" << endl;
}
mine691