結果

問題 No.2410 Nine Numbers
ユーザー ShirotsumeShirotsume
提出日時 2023-08-11 21:38:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 357 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 54,912 KB
最終ジャッジ日時 2024-04-29 12:28:48
合計ジャッジ時間 855 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0