結果

問題 No.5001 排他的論理和でランニング
ユーザー ミドリムシ
提出日時 2018-03-16 22:22:56
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 537 ms
実行使用メモリ 7,420 KB
スコア 0
最終ジャッジ日時 2020-03-12 19:21:48
ジャッジサーバーID
(参考情報)
judge9 /
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <random>
using namespace std;

random_device rnd;

int main(){
    int N, M;
    cin >> N >> M;
    for(int i = 0; i < M; i++){
        cout << rnd() % N + 1 << " ";
    }
    cout << endl;
}
0