結果
問題 |
No.445 得点
|
ユーザー |
![]() |
提出日時 | 2016-11-18 22:23:35 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 418 bytes |
コンパイル時間 | 925 ms |
コンパイル使用メモリ | 112,164 KB |
実行使用メモリ | 26,136 KB |
最終ジャッジ日時 | 2024-11-26 10:30:22 |
合計ジャッジ時間 | 2,136 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 WA * 4 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; namespace contest154 { class Program { static void Main(string[] args) { var AB = Console.ReadLine().Split(' ') .Select(a => int.Parse(a)).ToArray(); var A = AB[0]; var B = AB[1]; var result = 50 * A + Math.Floor((50 * A) / (0.8 + 0.2 * B)); Console.Write(result); } } }