結果
| 問題 | No.677 10^Nの約数 |
| コンテスト | |
| ユーザー |
ike_nyan
|
| 提出日時 | 2018-04-30 04:24:22 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 215 bytes |
| 記録 | |
| コンパイル時間 | 416 ms |
| コンパイル使用メモリ | 49,280 KB |
| 実行使用メモリ | 12,800 KB |
| 最終ジャッジ日時 | 2026-03-16 05:58:18 |
| 合計ジャッジ時間 | 31,590 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 TLE * 10 |
ソースコード
#include <stdio.h>
#include <math.h>
int main(){
int n = 0;
scanf("%d",&n);
long unsigned int a = pow(10, n);
for(int i=1; i<=a; i++){
if(a%i==0){
printf("%d\n",i);
}
}
}
ike_nyan