結果

問題 No.2562 数字探しゲーム(緑以下コンver.)
ユーザー strawberry0929strawberry0929
提出日時 2023-12-02 16:36:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 1,601 bytes
コンパイル時間 6,623 ms
コンパイル使用メモリ 308,456 KB
実行使用メモリ 6,548 KB
最終ジャッジ日時 2023-12-02 16:36:30
合計ジャッジ時間 6,757 ms
ジャッジサーバーID
(参考情報)
judge13 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,548 KB
testcase_01 AC 2 ms
6,548 KB
testcase_02 AC 2 ms
6,548 KB
testcase_03 AC 2 ms
6,548 KB
testcase_04 AC 36 ms
6,548 KB
testcase_05 AC 35 ms
6,548 KB
testcase_06 AC 34 ms
6,548 KB
testcase_07 AC 34 ms
6,548 KB
testcase_08 AC 35 ms
6,548 KB
testcase_09 AC 35 ms
6,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using mint = modint998244353;
using ll = long long;
using lb = long double;
using VI = vector<int>;
using VL = vector<ll>;
using P = pair<int, int>;
inline void scan(){}
template<class Head,class... Tail>
inline void scan(Head&head,Tail&... tail){std::cin>>head;scan(tail...);}
#define LL(...) ll __VA_ARGS__;scan(__VA_ARGS__)
#define LB(...) lb __VA_ARGS__;scan(__VA_ARGS__)
#define INT(...) int __VA_ARGS__;scan(__VA_ARGS__)
#define STR(...) string __VA_ARGS__;scan(__VA_ARGS__)
template<class ll> inline bool chmax(ll& a, ll b) { if (a < b) { a = b; return 1; } return 0; }template<class ll> inline bool chmin(ll& a, ll b) { if (a > b) { a = b; return 1; } return 0; }
template<typename T>
std::istream &operator>>(std::istream&is,std::vector<T>&v){for(T &in:v){is>>in;}return is;}
template<typename T>
std::ostream &operator<<(std::ostream&os,const std::vector<T>&v){for(auto it=std::begin(v);it!=std::end(v);){os<<*it<<((++it)!=std::end(v)?" ":"");}return os;}
#define rep(i, s, n) for (int i = (s); i < (int)(n); i++)
#define ALL(a)  (a).begin(),(a).end()
#define RALL(a)  (a).rbegin(),(a).rend()
const int inf = INT_MAX / 2; const ll infl = 1LL << 60;
//_
int main(){
  INT(t);
  rep(i, 0, t){
    LL(m);
    vector<ll> d(9);
    cin >> d;
    ll x = 0;
    rep(i, 0, 9){
      rep(j, 0, d[i]){
        x *= 10;
        x += (ll)i + 1;
      }
    }
    x *= 1000000000LL;
    if((x + m - 1) / m * m == 0){
      cout << m << endl;
      continue;
    }
    cout << (x + m - 1) / m * m << endl;
  }
}
0