結果
問題 | No.192 合成数 |
ユーザー | Tlapesium |
提出日時 | 2019-03-19 22:42:04 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 355 bytes |
コンパイル時間 | 1,665 ms |
コンパイル使用メモリ | 195,592 KB |
最終ジャッジ日時 | 2025-01-06 23:35:37 |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 21 WA * 4 |
ソースコード
#include <bits/stdc++.h>#define INF 2147483647#define INF_LL 9223372036854775807#define MOD 1000000007using namespace std;typedef long long int ll;typedef unsigned long long int ull;random_device rnd;mt19937 mt(rnd());int main() {uniform_int_distribution<> rand100(-100, 100);int N;cin >> N;cout << N + rand100(mt) << endl;return 0;}