Submission #6245602


Source Code Expand

using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Linq;
using static MyIO;


public class A
{
	public static void Main()
	{
		double A = GetDouble();
		double B = GetDouble();
		double C = GetDouble();
		Console.WriteLine($"{(B * C)/A:F12}");
	}
}


public static class MyIO
{
	private static string[] args = null;
	private static int num = -1;
	private static int used = -1;

	private static string getArg()
	{
		if(used == num)
		{
			args = Console.ReadLine().Split(' ');
			num = args.Length;
			used = 0;
		}
		return args[used++];
	}

	public static int GetInt(){ return int.Parse(getArg()); }
	public static long GetLong(){ return long.Parse(getArg()); }
	public static double GetDouble(){ return double.Parse(getArg()); }
	public static string GetString(){ return getArg(); }
}

Submission Info

Submission Time
Task A - SDカード
User DM7PvTyc
Language C# (Mono 4.6.2.0)
Score 100
Code Size 882 Byte
Status AC
Exec Time 21 ms
Memory 11220 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 2
AC × 10
Set Name Test Cases
Sample 00_example_01.txt, 00_example_02.txt
All 00_example_01.txt, 00_example_02.txt, 10_rand_01.txt, 10_rand_02.txt, 10_rand_03.txt, 10_rand_04.txt, 10_rand_05.txt, 10_rand_06.txt, 20_hand_01.txt, 20_hand_02.txt
Case Name Status Exec Time Memory
00_example_01.txt AC 21 ms 11092 KB
00_example_02.txt AC 21 ms 9172 KB
10_rand_01.txt AC 21 ms 11220 KB
10_rand_02.txt AC 20 ms 9044 KB
10_rand_03.txt AC 21 ms 9172 KB
10_rand_04.txt AC 21 ms 11092 KB
10_rand_05.txt AC 21 ms 11092 KB
10_rand_06.txt AC 20 ms 9044 KB
20_hand_01.txt AC 20 ms 9044 KB
20_hand_02.txt AC 20 ms 9044 KB