結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | SagToki |
提出日時 | 2018-06-08 14:38:33 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 24 ms / 5,000 ms |
コード長 | 1,407 bytes |
コンパイル時間 | 803 ms |
コンパイル使用メモリ | 110,272 KB |
実行使用メモリ | 25,844 KB |
最終ジャッジ日時 | 2024-07-23 07:13:09 |
合計ジャッジ時間 | 1,622 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
23,556 KB |
testcase_01 | AC | 24 ms
23,680 KB |
testcase_02 | AC | 23 ms
23,980 KB |
testcase_03 | AC | 24 ms
25,824 KB |
testcase_04 | AC | 23 ms
25,696 KB |
testcase_05 | AC | 23 ms
21,944 KB |
testcase_06 | AC | 22 ms
23,680 KB |
testcase_07 | AC | 23 ms
23,936 KB |
testcase_08 | AC | 23 ms
23,936 KB |
testcase_09 | AC | 23 ms
23,548 KB |
testcase_10 | AC | 24 ms
25,844 KB |
testcase_11 | AC | 24 ms
23,776 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; namespace Yukicorder_032 { class Program { static void Main(string[] args) { int L = Input(0, 1000); int M = Input(0, 1000); int N = Input(0, 1000); int Result = Processing(L, M, N); Console.WriteLine(Result); } static int Input(int Min , int Max) { int Number = 0; try { Number = int.Parse(Console.ReadLine()); if(Number < Min || Number > Max) { Console.WriteLine(Min + "以上" + Max + "以下で入力してください"); } }catch(FormatException e) { Console.WriteLine("数字を入力してください"); }catch(Exception E) { Console.WriteLine("予期せぬエラーです"); } return Number; } static int Processing(int L , int M , int N) { int Count = 0; if(N >= 25) { Count += N % 25; M += N / 25; }else{ Count += N; } if(M >= 4) { Count += M % 4; L += M / 4; }else{ Count += M; } if(L >= 10) { Count += L % 10; } return Count; } } }