結果
| 問題 | No.677 10^Nの約数 |
| コンテスト | |
| ユーザー |
hkarinto
|
| 提出日時 | 2018-06-04 16:56:02 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 225 bytes |
| コンパイル時間 | 620 ms |
| コンパイル使用メモリ | 58,392 KB |
| 実行使用メモリ | 13,760 KB |
| 最終ジャッジ日時 | 2024-06-30 09:42:50 |
| 合計ジャッジ時間 | 5,209 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 TLE * 1 -- * 9 |
ソースコード
#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;
}
}
}
hkarinto