結果

問題 No.677 10^Nの約数
ユーザー isimiyaisimiya
提出日時 2018-05-23 21:18:58
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 988 ms
コンパイル使用メモリ 102,912 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-06-28 16:27:43
合計ジャッジ時間 5,814 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 23 ms
18,176 KB
testcase_02 AC 23 ms
17,792 KB
testcase_03 AC 23 ms
18,048 KB
testcase_04 AC 23 ms
17,920 KB
testcase_05 AC 25 ms
18,048 KB
testcase_06 AC 35 ms
17,920 KB
testcase_07 AC 132 ms
18,048 KB
testcase_08 AC 1,101 ms
17,792 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
public class Classmiya
{
	static void Main()
	{

		string stdin = Console.ReadLine();
		Int64 N = Int64.Parse(stdin);
		if (N == 0) return;

		double d = Math.Pow(10,N);
		Int64 x = (Int64)d;
		for (Int64 i = 1; i <= x; i++){
			if(x % i == 0)Console.WriteLine(i);
		}
	}
}
0