結果
| 問題 |
No.2516 Credit Creation
|
| コンテスト | |
| ユーザー |
べんけのーび
|
| 提出日時 | 2023-10-30 16:24:45 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 100 bytes |
| コンパイル時間 | 439 ms |
| コンパイル使用メモリ | 82,072 KB |
| 実行使用メモリ | 53,992 KB |
| 最終ジャッジ日時 | 2024-09-25 17:18:35 |
| 合計ジャッジ時間 | 1,735 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | AC * 2 WA * 8 |
ソースコード
N = int(input()) R = float(input()) A = [100] for i in range(N-1): A.append(A[-1]*R) print(sum(A))
べんけのーび