結果
| 問題 | No.445 得点 |
| コンテスト | |
| ユーザー |
mban
|
| 提出日時 | 2016-12-02 01:03:17 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 16 ms / 2,000 ms |
| コード長 | 562 bytes |
| 記録 | |
| コンパイル時間 | 573 ms |
| コンパイル使用メモリ | 105,408 KB |
| 実行使用メモリ | 20,676 KB |
| 最終ジャッジ日時 | 2026-03-19 11:04:41 |
| 合計ジャッジ時間 | 1,613 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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);
}
}
mban