結果

問題 No.542 1円玉と5円玉
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-08-22 00:27:45
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 1,035 ms
コンパイル使用メモリ 116,732 KB
実行使用メモリ 28,320 KB
最終ジャッジ日時 2024-06-01 05:17:24
合計ジャッジ時間 2,141 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
26,080 KB
testcase_01 AC 37 ms
26,208 KB
testcase_02 AC 37 ms
26,460 KB
testcase_03 AC 35 ms
26,328 KB
testcase_04 AC 37 ms
26,588 KB
testcase_05 AC 39 ms
28,296 KB
testcase_06 AC 40 ms
26,660 KB
testcase_07 AC 39 ms
28,320 KB
testcase_08 AC 40 ms
26,456 KB
testcase_09 AC 41 ms
26,720 KB
testcase_10 AC 39 ms
26,208 KB
testcase_11 AC 39 ms
26,288 KB
testcase_12 AC 40 ms
26,536 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;

class No542{
    static void Main(){
        var money=Console.ReadLine().Split(' ').Select(x=>Int32.Parse(x)).ToArray();
        var ansHashSet=new HashSet<int>();
        for(int i=0;i<money[1]+1;++i){
            var sumMoney=i*5;
            for(int j=0;j<money[0]+1;++j){
                if(i!=0||j!=0)ansHashSet.Add(sumMoney+j);
            }
        }
        var ans=ansHashSet.OrderBy(x=>x);
        foreach(var a in ans){
            Console.WriteLine(a);
        }
    }
}
0