結果

問題 No.2466 Root! Root! Root!
ユーザー NP
提出日時 2024-02-03 08:33:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 158 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 52,480 KB
最終ジャッジ日時 2024-09-28 10:45:17
合計ジャッジ時間 2,186 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def calculate_result(N):
    result = math.sqrt(1 + N * (N + 1))
    return result

N = int(input())

result = calculate_result(N)
print(result)
0