結果

問題 No.221 犯罪都市
ユーザー kohei2019kohei2019
提出日時 2022-01-03 20:51:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 82 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 52,892 KB
最終ジャッジ日時 2024-04-21 10:02:27
合計ジャッジ時間 1,749 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,428 KB
testcase_01 AC 37 ms
52,892 KB
testcase_02 AC 38 ms
51,812 KB
testcase_03 AC 39 ms
52,764 KB
testcase_04 AC 38 ms
52,000 KB
testcase_05 AC 38 ms
51,424 KB
testcase_06 AC 38 ms
51,888 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 38 ms
52,332 KB
testcase_09 AC 42 ms
51,556 KB
testcase_10 AC 38 ms
52,552 KB
testcase_11 AC 39 ms
51,692 KB
testcase_12 AC 40 ms
52,440 KB
testcase_13 AC 39 ms
52,092 KB
testcase_14 AC 39 ms
52,076 KB
testcase_15 AC 39 ms
52,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a,b = 10000-N,N
arrest = a*0.01/(a*0.01+N*0.99)
print(arrest*100)
0