結果
問題 | No.3049 Yes |
ユーザー | hamuhei4869 |
提出日時 | 2019-04-01 21:49:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 333 bytes |
コンパイル時間 | 1,850 ms |
実行使用メモリ | 1,512 KB |
スコア | 0 |
最終ジャッジ日時 | 2019-04-01 21:49:39 |
ジャッジサーバーID (参考情報) |
judge6 / |
純コード判定しない問題か言語 |
(要ログイン)
ソースコード
#include <bits/stdc++.h> using namespace std; int retrnd(int n){ //乱数生成 std::random_device rnd; std::mt19937 mt(rnd()); std::uniform_int_distribution<> rand100(0, n); return rand100(mt); } int main(){ int s = retrnd(100); if(s <= 20)cout<<"Yes"<<endl; else cout<<"No"<<endl; }