結果
| 問題 |
No.8072 Sum of sqrt(x)
|
| ユーザー |
maspy
|
| 提出日時 | 2020-06-21 12:19:04 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 180 bytes |
| コンパイル時間 | 630 ms |
| コンパイル使用メモリ | 82,560 KB |
| 実行使用メモリ | 173,200 KB |
| 最終ジャッジ日時 | 2024-06-30 12:27:43 |
| 合計ジャッジ時間 | 55,571 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 8 WA * 19 |
ソースコード
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
N = int(readline())
nums = map(int, read().split())
s = 0
for x in nums:
s += x**.5
print(s)
maspy