結果
| 問題 |
No.8072 Sum of sqrt(x)
|
| ユーザー |
tk
|
| 提出日時 | 2021-05-08 18:41:26 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 122 bytes |
| コンパイル時間 | 618 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 188,312 KB |
| 最終ジャッジ日時 | 2024-09-17 00:24:29 |
| 合計ジャッジ時間 | 26,834 ms |
|
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 27 |
ソースコード
import math
N = int(input())
x = []
for i in range(N):
x.append(input())
for i in range(N):
print(math.sqrt(x[i]))
tk