結果
問題 |
No.2466 Root! Root! Root!
|
ユーザー |
|
提出日時 | 2023-09-13 12:51:08 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 45 ms / 2,000 ms |
コード長 | 114 bytes |
コンパイル時間 | 227 ms |
コンパイル使用メモリ | 82,316 KB |
実行使用メモリ | 61,772 KB |
最終ジャッジ日時 | 2024-06-30 21:47:57 |
合計ジャッジ時間 | 2,383 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 24 |
ソースコード
import math N=int(input()) ans=1 for i in range(100000): ans=math.sqrt(ans*(N+99999-i)+1) print(int(round(ans)))