結果
| 問題 | No.8072 Sum of sqrt(x) |
| ユーザー |
kai yo
|
| 提出日時 | 2020-11-08 17:27:09 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 218 bytes |
| 記録 | |
| コンパイル時間 | 1,502 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 85,112 KB |
| 最終ジャッジ日時 | 2026-04-03 09:46:37 |
| 合計ジャッジ時間 | 19,953 ms |
|
ジャッジサーバーID (参考情報) |
judge5_0 / judge5_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 4 TLE * 1 -- * 22 |
ソースコード
import numpy as np
A = input()
B = [0] * int(A)
C = [0] * int(A)
counter = 0
for x in range(int(A)):
B.append(input())
counter = 0
for y in B:
C[x] = C[x] + np.sqrt(2)
counter = counter + 1
kai yo