結果

問題 No.445 得点
ユーザー abL8ZLsTbFabL8ZLsTbF
提出日時 2016-11-18 22:48:28
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 103,764 KB
実行使用メモリ 23,836 KB
最終ジャッジ日時 2023-09-12 07:16:25
合計ジャッジ時間 4,370 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
21,900 KB
testcase_01 AC 61 ms
21,964 KB
testcase_02 AC 61 ms
21,984 KB
testcase_03 AC 60 ms
21,936 KB
testcase_04 AC 60 ms
23,836 KB
testcase_05 AC 61 ms
19,792 KB
testcase_06 AC 60 ms
21,868 KB
testcase_07 AC 61 ms
21,860 KB
testcase_08 AC 61 ms
21,856 KB
testcase_09 AC 61 ms
21,804 KB
testcase_10 AC 62 ms
21,872 KB
testcase_11 AC 61 ms
21,960 KB
testcase_12 AC 61 ms
21,940 KB
testcase_13 AC 61 ms
21,960 KB
testcase_14 AC 61 ms
21,856 KB
testcase_15 AC 62 ms
21,800 KB
testcase_16 AC 61 ms
21,996 KB
testcase_17 AC 61 ms
21,828 KB
testcase_18 AC 61 ms
19,712 KB
testcase_19 AC 62 ms
21,952 KB
testcase_20 AC 61 ms
21,852 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 Program
{
	public static void Main()
	{
		int[] AB = Console.ReadLine().Split().Select(int.Parse).ToArray();
		int A = AB[0], B = AB[1];
		Console.WriteLine(50 * A + (250 * A) / (4 + B));
	}
}
0