結果

問題 No.677 10^Nの約数
ユーザー hiro_ei1812hiro_ei1812
提出日時 2019-08-12 20:06:27
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 220 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 59,088 KB
実行使用メモリ 10,404 KB
最終ジャッジ日時 2024-09-17 10:26:13
合計ジャッジ時間 5,933 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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/2;i++){
		if(ans%i==0){
			cout<<i<<"\n";
		}
	}

	cout<<ans<<"\n";

	return 0;
}
0