結果

問題 No.32 貯金箱の憂鬱
ユーザー phsplsphspls
提出日時 2020-03-25 23:32:26
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 5,000 ms
コード長 628 bytes
コンパイル時間 2,033 ms
コンパイル使用メモリ 106,244 KB
実行使用メモリ 27,604 KB
最終ジャッジ日時 2024-07-23 07:54:33
合計ジャッジ時間 1,782 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
23,856 KB
testcase_01 AC 24 ms
23,732 KB
testcase_02 AC 24 ms
25,940 KB
testcase_03 AC 26 ms
27,604 KB
testcase_04 AC 25 ms
23,640 KB
testcase_05 AC 24 ms
23,888 KB
testcase_06 AC 24 ms
21,684 KB
testcase_07 AC 23 ms
23,644 KB
testcase_08 AC 23 ms
21,816 KB
testcase_09 AC 24 ms
23,512 KB
testcase_10 AC 23 ms
23,388 KB
testcase_11 AC 24 ms
23,724 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;

public class P0032 {
    public static void Main() {
        var l = int.Parse(Console.ReadLine().Trim());
        var m = int.Parse(Console.ReadLine().Trim());
        var n = int.Parse(Console.ReadLine().Trim());
        var total = 100*l + 25*m + n;
        var limit1000 = total / 1000;
        var limit100 = Math.Min(limit1000*10, (25*m + n) / 100);
        var limit25  = Math.Min(limit100*4, n / 25);
        var nUsed = limit25 * 25;
        var mUsed = limit100 * 4 - limit25;
        var lUsed = limit1000 * 10 - limit100;
        Console.WriteLine(l+m+n -lUsed-mUsed-nUsed);
    }
}
0