結果
| 問題 | No.797 Noelちゃんとピラミッド |
| コンテスト | |
| ユーザー |
💕💖💞
|
| 提出日時 | 2019-05-11 19:20:51 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 183 bytes |
| 記録 | |
| コンパイル時間 | 1,061 ms |
| コンパイル使用メモリ | 84,736 KB |
| 実行使用メモリ | 431,028 KB |
| 最終ジャッジ日時 | 2026-03-23 05:15:39 |
| 合計ジャッジ時間 | 125,458 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | WA * 20 TLE * 40 |
ソースコード
N = int(input())
xs = list(map(int, input().split()))
while len(xs) != 1:
pxs = []
for i in range(len(xs)-1):
pxs.append(xs[i] + xs[i+1])
xs = pxs
print(xs[-1])
💕💖💞