結果
問題 |
No.1862 Copy and Paste
|
ユーザー |
|
提出日時 | 2021-12-24 11:42:12 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 311 bytes |
コンパイル時間 | 210 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-11-14 08:32:04 |
合計ジャッジ時間 | 2,082 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 4 |
other | AC * 11 WA * 16 |
ソースコード
def main(): from math import inf, ceil a, b = map(int, input().split()) n = int(input()) if n == 1: exit(print(1)) ans = inf for i in range(1, n + 1): p = ceil(n ** (1 / i)) ans = min(ans, (a + b * (p - 1)) * i) if p == 2: break print(ans) if __name__ == '__main__': main()