結果

問題 No.1291 小手調べ
ユーザー mlpj56dmlpj56d
提出日時 2020-11-20 22:14:29
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 485 ms
コンパイル使用メモリ 64,380 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 13:11:00
合計ジャッジ時間 920 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 1 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<iostream>
using namespace std;

int N;
int d[110];
int main (){
    cin >> N;
    for(int i=0;i<N;i++) cin >> d[i];
    for(int i=0;i<N;i++) {
        cout << 9;
        for(int j=0;j<d[i]-1;j++) cout << 0;
        cout << endl;
    }
    return 0;
}
0