結果

問題 No.2410 Nine Numbers
ユーザー ShirotsumeShirotsume
提出日時 2023-08-11 21:56:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 57,244 KB
最終ジャッジ日時 2024-11-18 16:10:04
合計ジャッジ時間 1,201 ms
ジャッジサーバーID
(参考情報)
judge5 / 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(40):
    a.append(a[-1] + a[-2])

ans = (a[10:19])
print(*ans)
0