結果
問題 | No.1291 小手調べ |
ユーザー | ピッピ |
提出日時 | 2020-11-20 22:07:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 923 bytes |
コンパイル時間 | 2,058 ms |
コンパイル使用メモリ | 202,564 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-23 13:06:24 |
合計ジャッジ時間 | 2,536 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const double pi = 3.14159265358979; #define int long long int #define db double #define ldb long double #define P pair<int,int> #define F first #define S second #define dtor(deg) (((deg)/360)*2*pi) #define rtod(rad) (((rad)/2/pi)*360) #define all(a) a.begin(),a.end() #define Srep(n) for(int i = 0; i < n; i++) #define Lrep(i,a,n) for(int i = a; i < n; i++) #define Brep1st(n) for(int bit = 0; bit < (1 << n); bit++) #define Brep2nd(n) Srep(n) if(bit >> i & 1) #define rep2d(n,m) Srep(n) Lrep(j,0,m) #define vi vector<int> #define vvi vector<vi> #define vc vector<char> #define vvc vector<vc> int32_t main(){ int n; cin >> n; Srep(n){ int input; string ans = "9"; cin >> input; if(input == 1){ cout << 10 << endl; continue; } Lrep(j,0,input-1) ans += '0'; cout << ans << endl; } }