結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | 明智重蔵 |
提出日時 | 2015-08-02 19:25:17 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 25 ms / 5,000 ms |
コード長 | 1,204 bytes |
コンパイル時間 | 1,071 ms |
コンパイル使用メモリ | 104,448 KB |
実行使用メモリ | 17,792 KB |
最終ジャッジ日時 | 2024-07-23 02:06:40 |
合計ジャッジ時間 | 1,931 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
17,792 KB |
testcase_01 | AC | 23 ms
17,664 KB |
testcase_02 | AC | 23 ms
17,664 KB |
testcase_03 | AC | 23 ms
17,792 KB |
testcase_04 | AC | 23 ms
17,536 KB |
testcase_05 | AC | 23 ms
17,536 KB |
testcase_06 | AC | 23 ms
17,664 KB |
testcase_07 | AC | 24 ms
17,664 KB |
testcase_08 | AC | 23 ms
17,664 KB |
testcase_09 | AC | 25 ms
17,536 KB |
testcase_10 | AC | 22 ms
17,664 KB |
testcase_11 | AC | 23 ms
17,536 KB |
コンパイルメッセージ
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; class Program { static string InputPattern = "Input3"; static List<string> GetInputList() { var WillReturn = new List<string>(); if (InputPattern == "Input1") { WillReturn.Add("7"); WillReturn.Add("20"); WillReturn.Add("10"); // // } else if (InputPattern == "Input2") { WillReturn.Add("0"); WillReturn.Add("0"); WillReturn.Add("0"); // // } else { string wkStr; while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr); } return WillReturn; } static void Main() { List<string> InputList = GetInputList(); int L = int.Parse(InputList[0]); int M = int.Parse(InputList[1]); int N = int.Parse(InputList[2]); int SumMoney = L * 100 + 25 * M + N; int CoinCnt = 0; SumMoney %= 1000; CoinCnt += SumMoney / 100; SumMoney %= 100; CoinCnt += SumMoney / 25; SumMoney %= 25; CoinCnt += SumMoney; Console.WriteLine(CoinCnt); } }