結果

問題 No.677 10^Nの約数
ユーザー hkarinto
提出日時 2018-06-04 16:55:47
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 225 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 58,348 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-06-30 09:42:44
合計ジャッジ時間 5,579 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 7 TLE * 1 -- * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdlib>
#include <iostream>
#include <cmath>
#include <typeinfo>
using namespace std;
int main(){
int N;
cin>> N;
long long int a =pow(10,N);
for(int i=1;i<=a;i++){
    if(a%i==0){
        cout<<i<<endl;
    }
}

}
0