結果
| 問題 | No.677 10^Nの約数 |
| コンテスト | |
| ユーザー |
hkarinto
|
| 提出日時 | 2018-06-04 16:55:47 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 225 bytes |
| 記録 | |
| コンパイル時間 | 302 ms |
| コンパイル使用メモリ | 76,156 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-08-02 08:29:09 |
| 合計ジャッジ時間 | 8,056 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 TLE * 2 -- * 8 |
ソースコード
#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