結果
問題 |
No.8091 Empty
|
ユーザー |
|
提出日時 | 2023-09-09 08:28:10 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 135 bytes |
コンパイル時間 | 1,014 ms |
コンパイル使用メモリ | 108,588 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-06-27 01:36:33 |
合計ジャッジ時間 | 1,287 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 1 |
ソースコード
#include <iostream> #include <random> using namespace std; int main() { random_device rd; mt19937 mt(rd()); cout << mt() << '\n'; }