結果
問題 | No.1182 Welcome |
ユーザー | はまやんはまやん |
提出日時 | 2020-08-22 14:14:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,898 bytes |
コンパイル時間 | 2,400 ms |
コンパイル使用メモリ | 205,560 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 19:11:12 |
合計ジャッジ時間 | 2,661 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ソースコード
#include<bits/stdc++.h> #define rep(i,a,b) for(int i=a;i<b;i++) #define rrep(i,a,b) for(int i=a;i>=b;i--) #define fore(i,a) for(auto &i:a) #define all(x) (x).begin(),(x).end() //#pragma GCC optimize ("-O3") using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); } typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60; template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } //--------------------------------------------------------------------------------------------------- int getrandmax() { static uint32_t y = time(NULL); y ^= (y << 13); y ^= (y >> 17); y ^= (y << 5); return abs((int)y); } // [l, r] int getrand(int l, int r) { return getrandmax() % (r - l + 1) + l; } /*--------------------------------------------------------------------------------------------------- ∧_∧ ∧_∧ (´<_` ) Welcome to My Coding Space! ( ´_ゝ`) / ⌒i @hamayanhamayan0 / \ | | / / ̄ ̄ ̄ ̄/ | __(__ニつ/ _/ .| .|____ \/____/ (u ⊃ ---------------------------------------------------------------------------------------------------*/ vector<string> heros = { "define", "Thistle", "capra314cabra", "sanada_atcoder", "penguinman", "kaage", "Rho", "AndrewK", "NatsubiSogan", "seven_three", "Forested", "Ebishu", "aspi" }; //--------------------------------------------------------------------------------------------------- void _main() { int n = heros.size(); cout << heros[getrand(0, n - 1)] << endl; }