結果

問題 No.3049 Yes
ユーザー mine691mine691
提出日時 2019-04-01 22:22:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 2,164 ms
実行使用メモリ 1,492 KB
スコア 100
最終ジャッジ日時 2019-04-01 22:22:06
ジャッジサーバーID
(参考情報)
judge7 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
1,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0