結果

問題 No.445 得点
ユーザー mbanmban
提出日時 2016-12-02 01:03:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 105,808 KB
実行使用メモリ 25,984 KB
最終ジャッジ日時 2024-06-29 20:44:19
合計ジャッジ時間 1,754 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
25,688 KB
testcase_01 AC 22 ms
23,780 KB
testcase_02 AC 21 ms
21,936 KB
testcase_03 AC 21 ms
23,728 KB
testcase_04 AC 21 ms
25,828 KB
testcase_05 AC 21 ms
25,560 KB
testcase_06 AC 20 ms
23,856 KB
testcase_07 AC 20 ms
25,984 KB
testcase_08 AC 20 ms
25,820 KB
testcase_09 AC 20 ms
23,652 KB
testcase_10 AC 21 ms
21,684 KB
testcase_11 AC 20 ms
23,512 KB
testcase_12 AC 20 ms
21,940 KB
testcase_13 AC 21 ms
23,812 KB
testcase_14 AC 22 ms
25,688 KB
testcase_15 AC 21 ms
23,724 KB
testcase_16 AC 21 ms
23,988 KB
testcase_17 AC 21 ms
25,860 KB
testcase_18 AC 21 ms
25,848 KB
testcase_19 AC 21 ms
25,720 KB
testcase_20 AC 20 ms
23,776 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.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;

class Magatro
{
    
    static void Main()
    {
        int A, B;
        string[] s = Console.ReadLine().Split(' ');
        A = int.Parse(s[0]);
        B = int.Parse(s[1]);
        Console.WriteLine(function(A, B));
       
    }
    static int function(int a, int b)
    {
        int q = a * 50;
        int w = 8 + 2 * b;
        return q + (q * 10 / w);
    }
}


0