結果

問題 No.445 得点
ユーザー kuuso1kuuso1
提出日時 2016-11-18 23:42:47
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 985 bytes
コンパイル時間 2,293 ms
コンパイル使用メモリ 106,668 KB
実行使用メモリ 22,904 KB
最終ジャッジ日時 2023-09-12 07:16:44
合計ジャッジ時間 4,563 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
20,720 KB
testcase_01 AC 56 ms
20,892 KB
testcase_02 AC 54 ms
20,644 KB
testcase_03 AC 55 ms
22,764 KB
testcase_04 AC 54 ms
20,732 KB
testcase_05 AC 55 ms
20,852 KB
testcase_06 AC 54 ms
20,824 KB
testcase_07 AC 55 ms
20,728 KB
testcase_08 AC 55 ms
20,832 KB
testcase_09 AC 55 ms
20,860 KB
testcase_10 AC 56 ms
22,904 KB
testcase_11 AC 55 ms
20,888 KB
testcase_12 AC 55 ms
20,828 KB
testcase_13 AC 54 ms
20,848 KB
testcase_14 AC 54 ms
20,756 KB
testcase_15 AC 54 ms
22,896 KB
testcase_16 AC 54 ms
18,776 KB
testcase_17 AC 55 ms
20,764 KB
testcase_18 AC 56 ms
20,952 KB
testcase_19 AC 55 ms
20,664 KB
testcase_20 AC 55 ms
20,824 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.Linq;
using System.Text;

class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		Console.WriteLine((int)(50.0 * A + 50.0*A/(0.8 + 0.2 * B)));
	}
	int A,B;
	public Sol(){
		var d = ria();
		A = d[0];
		B = d[1];
	}

	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);}
	static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));}
	static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));}
	static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));}
}
0