結果

問題 No.542 1円玉と5円玉
ユーザー boya978boya978
提出日時 2020-05-02 23:44:23
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 2,010 ms
コンパイル使用メモリ 110,940 KB
実行使用メモリ 28,468 KB
最終ジャッジ日時 2024-06-10 12:23:06
合計ジャッジ時間 2,798 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
28,468 KB
testcase_01 AC 27 ms
20,608 KB
testcase_02 AC 28 ms
20,480 KB
testcase_03 AC 28 ms
20,352 KB
testcase_04 AC 28 ms
20,608 KB
testcase_05 AC 29 ms
20,608 KB
testcase_06 AC 30 ms
20,608 KB
testcase_07 AC 30 ms
20,608 KB
testcase_08 AC 31 ms
20,736 KB
testcase_09 AC 33 ms
20,480 KB
testcase_10 AC 28 ms
20,608 KB
testcase_11 AC 28 ms
20,480 KB
testcase_12 AC 31 ms
20,736 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.Linq;
using System.Collections.Generic;
public class Hello{
    public static void Main(){

        int[] ns = Console.ReadLine().Split().Select(int.Parse).ToArray();
        int oneCoins = ns[0], fiveCoins = ns[1];
        
        var ones = new List<int>();
        var fives = new List<int>();
        var vals = new SortedSet<int>();
        
        for(int i=1;i<=oneCoins;i++)
        {
            ones.Add(i);
            vals.Add(i);
        }
        for(int i=5;i<=fiveCoins*5;i+=5)
        {
            fives.Add(i);
            vals.Add(i);
        }

        foreach(int Yen1 in ones)
            foreach(int Yen5 in fives)
                vals.Add(Yen1+Yen5);

        foreach(int val in vals)
            Console.WriteLine(val);
    }
}
0