結果

問題 No.542 1円玉と5円玉
ユーザー PE11PE11
提出日時 2017-10-26 18:01:54
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 885 bytes
コンパイル時間 830 ms
コンパイル使用メモリ 110,020 KB
実行使用メモリ 27,004 KB
最終ジャッジ日時 2024-05-01 15:13:58
合計ジャッジ時間 1,852 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
22,960 KB
testcase_01 AC 30 ms
23,220 KB
testcase_02 AC 32 ms
25,164 KB
testcase_03 AC 29 ms
24,528 KB
testcase_04 AC 31 ms
27,004 KB
testcase_05 AC 32 ms
25,164 KB
testcase_06 AC 33 ms
22,968 KB
testcase_07 AC 34 ms
24,912 KB
testcase_08 AC 35 ms
26,824 KB
testcase_09 AC 33 ms
24,912 KB
testcase_10 AC 31 ms
25,136 KB
testcase_11 AC 32 ms
25,040 KB
testcase_12 AC 35 ms
23,084 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;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace YukiCoder
{
	public static class OneAndFive
	{


		public static void Main()
		{
			List<int> AmountMoney = new List<int>();

			string[] Amount = Console.ReadLine().Split(' ');

			int OneAmount = int.Parse(Amount[0]);
			int FiveAmount = int.Parse(Amount[1]);

			for (int One = 1; One <= OneAmount; One++)
			{
				AmountMoney.Add(One);
			}

			for(int Five = 1; Five <= FiveAmount; Five++)
			{
				AmountMoney.Add(Five * 5);
			}

			for(int Five = 1; Five <= FiveAmount; Five++)
			{
				for (int One = 1; One <= OneAmount; One++)
				{
					AmountMoney.Add(One + Five * 5);
				}
			}

                        AmountMoney.Sort();
			foreach(var Money in AmountMoney.Distinct())
			{
				Console.WriteLine(Money);
			}

			Console.ReadKey();
		}
	}
}
0