結果

問題 No.677 10^Nの約数
ユーザー ixTL255ixTL255
提出日時 2018-07-09 22:51:48
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 711 ms
コンパイル使用メモリ 106,940 KB
実行使用メモリ 26,024 KB
最終ジャッジ日時 2024-07-17 23:18:55
合計ジャッジ時間 1,933 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
25,460 KB
testcase_01 AC 23 ms
23,932 KB
testcase_02 AC 27 ms
24,064 KB
testcase_03 AC 25 ms
23,680 KB
testcase_04 AC 24 ms
23,932 KB
testcase_05 AC 24 ms
26,024 KB
testcase_06 AC 25 ms
23,936 KB
testcase_07 AC 25 ms
23,812 KB
testcase_08 AC 25 ms
23,600 KB
testcase_09 AC 25 ms
23,804 KB
testcase_10 AC 24 ms
21,936 KB
testcase_11 AC 25 ms
23,808 KB
testcase_12 AC 25 ms
25,780 KB
testcase_13 AC 29 ms
24,068 KB
testcase_14 AC 28 ms
25,720 KB
testcase_15 AC 27 ms
23,600 KB
testcase_16 AC 26 ms
23,812 KB
testcase_17 AC 27 ms
25,860 KB
testcase_18 AC 28 ms
23,684 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;

public class Yuki677
{
	public static void Main()
	{
		var n = long.Parse(Console.ReadLine());
		var a = new List<long>();
		
		long b = 1;

		for(int i = 0; i <= n; ++i)
		{
			long c = 1;
			for(int j = 0; j <= n; ++j)
			{
				a.Add(b * c);
				c *= 5;
			}
			b *= 2;
		}
		
		a.Sort();
		foreach(long x in a) Console.WriteLine(x);
	}
}
0