結果

問題 No.677 10^Nの約数
ユーザー hiro_ei1812hiro_ei1812
提出日時 2019-08-12 19:29:34
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 199 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 58,876 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-17 09:15:42
合計ジャッジ時間 4,911 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 5 ms
6,940 KB
testcase_07 AC 32 ms
6,940 KB
testcase_08 AC 303 ms
6,944 KB
testcase_09 TLE -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
using namespace std;

int main(){
	int in;
	int i,ans;

	cin>>in;

	ans=pow(10,in);

	for(i=1;i<=ans;i++){
		if(ans%i==0){
			cout<<i<<"\n";
		}
	}

	return 0;
}
0