結果
問題 | No.1291 小手調べ |
ユーザー |
![]() |
提出日時 | 2020-11-20 21:28:35 |
言語 | C++14 (gcc 11.2.0 + boost 1.78.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 323 bytes |
コンパイル時間 | 1,523 ms |
使用メモリ | 9,668 KB |
最終ジャッジ日時 | 2023-02-23 17:55:56 |
合計ジャッジ時間 | 1,985 ms |
ジャッジサーバーID (参考情報) |
judge11 / judge13 |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
7,596 KB |
testcase_01 | AC | 2 ms
7,576 KB |
testcase_02 | AC | 1 ms
9,668 KB |
testcase_03 | AC | 1 ms
7,568 KB |
testcase_04 | AC | 2 ms
7,608 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; vector<string> ans; for(int i = 0;i < N;i++){ int d; cin >> d; if(d == 1){ ans.push_back("10"); continue; } string a = "9"; for(int j = 0;j < d - 1;j++)a += "0"; ans.push_back(a); } for(auto a:ans)cout << a << endl; }