結果

問題 No.445 得点
ユーザー papinianuspapinianus
提出日時 2016-12-02 13:21:14
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 964 bytes
コンパイル時間 4,185 ms
コンパイル使用メモリ 113,364 KB
実行使用メモリ 28,428 KB
最終ジャッジ日時 2024-06-29 20:53:31
合計ジャッジ時間 5,466 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
28,116 KB
testcase_01 AC 30 ms
26,328 KB
testcase_02 AC 28 ms
26,008 KB
testcase_03 AC 27 ms
26,336 KB
testcase_04 AC 26 ms
28,428 KB
testcase_05 AC 27 ms
28,168 KB
testcase_06 AC 26 ms
25,948 KB
testcase_07 AC 27 ms
26,160 KB
testcase_08 AC 30 ms
26,084 KB
testcase_09 AC 28 ms
23,860 KB
testcase_10 AC 29 ms
24,120 KB
testcase_11 AC 29 ms
28,248 KB
testcase_12 AC 29 ms
26,208 KB
testcase_13 AC 29 ms
28,048 KB
testcase_14 AC 29 ms
26,036 KB
testcase_15 AC 29 ms
25,868 KB
testcase_16 AC 29 ms
26,204 KB
testcase_17 AC 29 ms
26,336 KB
testcase_18 AC 29 ms
26,004 KB
testcase_19 AC 29 ms
24,500 KB
testcase_20 AC 29 ms
28,036 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;

namespace No445
{
    class Program
    {
        static void Main(string[] args)
        {
            var inputs = Console.ReadLine().ToIntArray(' ');
            Console.WriteLine(CalcurateScore(inputs[0], inputs[1]));
        }

        static string CalcurateScore(int n, int k)
        {
            return Math.Floor((50*n)+((50*n)/(0.8+0.2*k))).ToString();
        }
    }

    static class StringExtention
    {
        public static string[] ToStringArray(this string value, char splitChar)
        {
            return value.Split(splitChar);
        }
        public static int[] ToIntArray(this string value, char splitChar)
        {
            return value.Split(splitChar).Select(x=>Convert.ToInt32(x)).ToArray();
        }
        public static long[] ToLongArray(this string value, char splitChar)
        {
            return value.Split(splitChar).Select(x => Convert.ToInt64(x)).ToArray();
        }
    }
}
0