結果
問題 | No.542 1円玉と5円玉 |
ユーザー | PE11 |
提出日時 | 2017-10-26 17:59:18 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 841 bytes |
コンパイル時間 | 789 ms |
コンパイル使用メモリ | 112,396 KB |
実行使用メモリ | 27,328 KB |
最終ジャッジ日時 | 2024-05-01 15:13:55 |
合計ジャッジ時間 | 1,882 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
24,776 KB |
testcase_01 | AC | 30 ms
27,024 KB |
testcase_02 | AC | 32 ms
25,156 KB |
testcase_03 | AC | 29 ms
25,032 KB |
testcase_04 | AC | 30 ms
25,028 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 30 ms
22,840 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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); } } foreach(var Money in AmountMoney.Distinct()) { Console.WriteLine(Money); } Console.ReadKey(); } } }