結果
問題 | No.304 鍵(1) |
ユーザー | karinohito |
提出日時 | 2022-07-10 02:30:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 61 ms / 2,000 ms |
コード長 | 1,398 bytes |
コンパイル時間 | 2,493 ms |
コンパイル使用メモリ | 205,460 KB |
実行使用メモリ | 25,112 KB |
平均クエリ数 | 309.17 |
最終ジャッジ日時 | 2024-07-17 03:09:20 |
合計ジャッジ時間 | 3,359 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
24,836 KB |
testcase_01 | AC | 28 ms
24,580 KB |
testcase_02 | AC | 61 ms
24,580 KB |
testcase_03 | AC | 28 ms
25,112 KB |
testcase_04 | AC | 43 ms
24,952 KB |
testcase_05 | AC | 27 ms
24,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using vll = vector<ll>; using vvll = vector<vll>; using vvvll = vector<vvll>; using vvvvll = vector<vvvll>; using vb = vector<bool>; using vvb = vector<vb>; using vvvb = vector<vvb>; using vvvvb = vector<vvvb>; using vd = vector<double>; using vvd = vector<vd>; using vvvd = vector<vvd>; #define all(A) A.begin(),A.end() #define ALL(A) A.begin(),A.end() #define rep(i, n) for (ll i = 0; i < (ll) (n); i++) using pqr = priority_queue<pair<ll, ll>, vector<pair<ll, ll>>, greater<pair<ll, ll>>>; template<class T> bool chmax(T& p, T q, bool C = 1) { if (C == 0 && p == q) { return 1; } if (p < q) { p = q; return 1; } else { return 0; } } template<class T> bool chmin(T& p, T q, bool C = 1) { if (C == 0 && p == q) { return 1; } if (p > q) { p = q; return 1; } else { return 0; } } ll gcd(ll(a), ll(b)) { if (b == 0)return a; ll c = a; while (a % b != 0) { c = a % b; a = b; b = c; } return b; } vll D={20104,20063,19892,20011,19874,20199,19898,20163,19956,19841}; int main() { rep(i,1000){ ll h=i; string S=to_string(h); while(S.size()<3)S='0'+S; cout<<S<<endl; string T; cin>>T; if(T[0]=='u')return 0; } }