結果
| 問題 |
No.2410 Nine Numbers
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-08-11 21:38:22 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 357 bytes |
| コンパイル時間 | 193 ms |
| コンパイル使用メモリ | 82,008 KB |
| 実行使用メモリ | 56,048 KB |
| 最終ジャッジ日時 | 2024-11-18 15:36:39 |
| 合計ジャッジ時間 | 721 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
a = [0, 0]
a[0] = a[1] = 1
for i in range(18):
a.append(a[-1] + a[-2])
a = a[2:]
a = a[1::2]
print(*a)