結果
| 問題 | No.221 犯罪都市 |
| コンテスト | |
| ユーザー |
しらゆき
|
| 提出日時 | 2015-12-27 12:09:59 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 16 ms / 5,000 ms |
| コード長 | 193 bytes |
| 記録 | |
| コンパイル時間 | 557 ms |
| コンパイル使用メモリ | 103,296 KB |
| 実行使用メモリ | 19,328 KB |
| 最終ジャッジ日時 | 2026-05-30 21:04:51 |
| 合計ジャッジ時間 | 1,660 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 16 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
class Program
{
static void Main()
{
double n = double.Parse(Console.ReadLine());
Console.WriteLine((10000 - n) * 100 / ((10000 - n) + n * 99));
}
}
しらゆき