結果
| 問題 | No.2410 Nine Numbers |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-08-11 21:38:22 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 357 bytes |
| 記録 | |
| コンパイル時間 | 186 ms |
| コンパイル使用メモリ | 85,472 KB |
| 実行使用メモリ | 56,144 KB |
| 最終ジャッジ日時 | 2026-05-13 03:58:21 |
| 合計ジャッジ時間 | 1,063 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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)