結果

問題 No.221 犯罪都市
ユーザー noriocnorioc
提出日時 2024-09-03 09:56:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 101 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 53,292 KB
最終ジャッジ日時 2024-09-03 09:57:08
合計ジャッジ時間 1,609 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,016 KB
testcase_01 AC 34 ms
52,728 KB
testcase_02 AC 33 ms
52,864 KB
testcase_03 AC 34 ms
52,056 KB
testcase_04 AC 34 ms
51,964 KB
testcase_05 AC 34 ms
53,292 KB
testcase_06 AC 34 ms
52,072 KB
testcase_07 AC 34 ms
52,608 KB
testcase_08 AC 38 ms
52,524 KB
testcase_09 AC 33 ms
52,816 KB
testcase_10 AC 35 ms
52,316 KB
testcase_11 AC 35 ms
52,856 KB
testcase_12 AC 34 ms
52,052 KB
testcase_13 AC 34 ms
51,952 KB
testcase_14 AC 34 ms
52,616 KB
testcase_15 AC 34 ms
51,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

x = N
y = 10_000 - N
ans = (y * 0.01) / ((x * 0.99) + (y * 0.01))
print(ans * 100)
0