結果
| 問題 |
No.8072 Sum of sqrt(x)
|
| ユーザー |
tk
|
| 提出日時 | 2021-05-08 18:46:41 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 127 bytes |
| コンパイル時間 | 1,177 ms |
| コンパイル使用メモリ | 82,472 KB |
| 実行使用メモリ | 140,820 KB |
| 最終ジャッジ日時 | 2024-09-17 00:34:08 |
| 合計ジャッジ時間 | 45,604 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | AC * 5 WA * 22 |
ソースコード
import math
N = int(input())
x = []
for i in range(N):
x.append(int(input()))
for i in range(N):
print(math.sqrt(x[i]))
tk