結果
| 問題 | 
                            No.221 犯罪都市
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2015-12-13 20:51:48 | 
| 言語 | Python2  (2.7.18)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 12 ms / 5,000 ms | 
| コード長 | 155 bytes | 
| コンパイル時間 | 128 ms | 
| コンパイル使用メモリ | 6,784 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2024-12-25 03:52:33 | 
| 合計ジャッジ時間 | 950 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 16 | 
ソースコード
# -*- coding: utf-8 -*- N = float(input()) correct = 100 * N * 0.99 incorrect = 100 * (10000 - N) * 0.01 print incorrect / (incorrect + correct) * 100