結果

問題 No.1291 小手調べ
ユーザー OmameBeansOmameBeans
提出日時 2020-11-29 10:45:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 916 bytes
コンパイル時間 1,587 ms
コンパイル使用メモリ 166,752 KB
実行使用メモリ 4,356 KB
最終ジャッジ日時 2023-10-11 02:22:18
合計ジャッジ時間 2,265 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
4,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i,n) for (int i = 0; i < (n); ++i)
template<class T> inline bool chmin(T& a, T b) {if (a > b) {a = b;return true;}return false;}
template<class T> inline bool chmax(T& a, T b) {if (a < b) {a = b;return true;}return false;}
using namespace std;
using ll = long long;
using P = pair<int,int>;
using Pl = pair<long long,long long>;
using veci = vector<int>;
using vecl = vector<long long>;
using vecveci = vector<vector<int>>;
using vecvecl = vector<vector<long long>>;
const int MOD = 998244353;
const double pi = acos(-1);
ll gcd(ll a, ll b) {if(b == 0) return a; else return gcd(b,a%b);}
ll lcm(ll a, ll b) {return a*b/gcd(a,b);}

ll pow(ll n, ll a){
    ll ans = 1;
    REP(i,n) ans *= a;
    return ans;
}

int main() {
    int n; cin >> n;
    veci d(n);

    REP(i,n) cin >> d[i];

    REP(i,n) if(d[i] == 1) cout << 10 << endl;
    else cout << 9 * pow(10,d[i]-1) << endl;
}
0