結果
問題 | No.2516 Credit Creation |
ユーザー | hiryuN |
提出日時 | 2023-10-27 22:03:06 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 39 ms / 2,000 ms |
コード長 | 92 bytes |
コンパイル時間 | 294 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 53,380 KB |
最終ジャッジ日時 | 2024-09-25 14:09:17 |
合計ジャッジ時間 | 1,344 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
n=int(input()) r=float(input()) x=100 ans=0 for i in range(n): ans+=x x=x*(1-r) print(ans)